diff options
-rw-r--r-- | src/l_log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/l_log.c b/src/l_log.c index a405909..05111c3 100644 --- a/src/l_log.c +++ b/src/l_log.c @@ -74,7 +74,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; } |