1
0
mirror of https://github.com/lxsang/antd-lua-plugin synced 2024-12-26 01:18:22 +01:00

fix symbol missing

This commit is contained in:
lxsang 2020-12-28 22:40:43 +01:00
parent 0b6fc559b3
commit 002151f1e2
2 changed files with 1 additions and 1 deletions

BIN
dist/lua-0.5.2b.tar.gz vendored

Binary file not shown.

View File

@ -293,7 +293,7 @@ static int l_unknow (lua_State *L) {
static int l_log(lua_State *L)
{
const char* s = luaL_checkstring(L,1);
server_log("%s",s);
syslog (LOG_NOTICE, "%s", s);
return 0;
}