From 9ce2c8ba0734979fbc41c00fd6ca4287c2ec0af4 Mon Sep 17 00:00:00 2001 From: Brenden Matthews Date: Sat, 13 Jun 2009 13:40:27 -0600 Subject: [PATCH] Fix regression in Lua inotify stuff. --- src/llua.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/llua.c b/src/llua.c index 1f5479f4..0d60e42d 100644 --- a/src/llua.c +++ b/src/llua.c @@ -53,7 +53,7 @@ void llua_load(const char *script) lua_pop(lua_L, 1); #ifdef HAVE_SYS_INOTIFY_H } else if (!llua_block_notify && inotify_fd != -1) { - llua_append_notify(script); + llua_append_notify(path); #endif /* HAVE_SYS_INOTIFY_H */ } }