diff options
Diffstat (limited to 'lib/newwrap/lua/lua.nim')
-rwxr-xr-x | lib/newwrap/lua/lua.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/newwrap/lua/lua.nim b/lib/newwrap/lua/lua.nim index 449be5cda..000e09993 100755 --- a/lib/newwrap/lua/lua.nim +++ b/lib/newwrap/lua/lua.nim @@ -159,7 +159,7 @@ proc pushnumber*(L: PState, n: Number){.cdecl, dynlib: NAME, importc: "lua_pushnumber".} proc pushinteger*(L: PState, n: Integer){.cdecl, dynlib: NAME, importc: "lua_pushinteger".} -proc pushlstring*(L: PState, s: cstring, l_: int){.cdecl, dynlib: NAME, +proc pushlstring*(L: PState, s: cstring, len: int){.cdecl, dynlib: NAME, importc: "lua_pushlstring".} proc pushstring*(L: PState, s: cstring){.cdecl, dynlib: NAME, importc: "lua_pushstring".} |