diff options
Diffstat (limited to 'lua/sandborb')
-rw-r--r-- | lua/sandborb/src/app.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/sandborb/src/app.c b/lua/sandborb/src/app.c index e4ca3b7..f63106d 100644 --- a/lua/sandborb/src/app.c +++ b/lua/sandborb/src/app.c @@ -52,7 +52,7 @@ static int event_handler(sb_Event *e) { } lua_pushlightuserdata(L, e); /* Pass the event as userdata to Lua */ - lua_pushstring(L, e->path); /* FIXME: find a way to use lau_pushstring to pass posted data into lua */ + lua_pushstring(L, e->path); /* FIXME: find a way to use lua_pushstring to pass posted data into lua */ if (lua_pcall(L, 2, 1, 0) != LUA_OK) { fprintf(stderr, "Failed to call Lua function: %s\n", lua_tostring(L, -1)); lua_close(L); |