This commit is contained in:
Axel Kittenberger 2010-12-15 14:17:27 +00:00
parent fb177b3126
commit b784ab23c2
1 changed files with 3 additions and 3 deletions

View File

@ -279,9 +279,9 @@ handle_event(lua_State *L, struct kfs_event *event, ssize_t mlen)
} }
if (lua_pcall(L, 5, 0, -7)) { if (lua_pcall(L, 5, 0, -7)) {
exit(-1); // ERRNO exit(-1); // ERRNO
} }
lua_pop(L, 1); lua_pop(L, 1);
} }
return len; return len;
} }