summaryrefslogtreecommitdiff
path: root/src/l_log.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/l_log.c')
-rw-r--r--src/l_log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/l_log.c b/src/l_log.c
index 37e725e..5db304d 100644
--- a/src/l_log.c
+++ b/src/l_log.c
@@ -84,7 +84,7 @@ static int l_log_printf(lua_State *L)
lua_call(L, numargs - 1, 1);
}
- log_prio_t prio = luaL_checkint(L,1);
+ log_prio_t prio = luaL_checkinteger(L,1);
log_printf(prio, "%s", luaL_checkstring(L, 2));
return 0;
}