about summary refs log tree commit diff stats
path: root/lua/sandborb
diff options
context:
space:
mode:
authorelioat <elioat@tilde.institute>2024-06-05 23:06:33 -0400
committerelioat <elioat@tilde.institute>2024-06-05 23:06:33 -0400
commit79e868a40d78c92d8221d0b7c90509f184e0f847 (patch)
tree347cf6d91c9aed2ff9acdf86d6eb339fcc1b09f8 /lua/sandborb
parent883eb064e89b1502816d1692c48e5e3ea3d6184c (diff)
downloadtour-79e868a40d78c92d8221d0b7c90509f184e0f847.tar.gz
*
Diffstat (limited to 'lua/sandborb')
-rw-r--r--lua/sandborb/src/app.c2
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);