diff options
author | elioat <elioat@tilde.institute> | 2024-06-05 23:06:33 -0400 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2024-06-05 23:06:33 -0400 |
commit | 79e868a40d78c92d8221d0b7c90509f184e0f847 (patch) | |
tree | 347cf6d91c9aed2ff9acdf86d6eb339fcc1b09f8 /lua | |
parent | 883eb064e89b1502816d1692c48e5e3ea3d6184c (diff) | |
download | tour-79e868a40d78c92d8221d0b7c90509f184e0f847.tar.gz |
*
Diffstat (limited to 'lua')
-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); |