diff options
Diffstat (limited to 'loadlib.c')
-rw-r--r-- | loadlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id$ | 2 | ** $Id: loadlib.c,v 1.1 2003/03/17 13:01:48 roberto Exp roberto $ |
3 | ** Bare-bones dynamic library loader for Lua | 3 | ** Bare-bones dynamic library loader for Lua |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | * | 5 | * |
@@ -95,7 +95,7 @@ static void pusherror(lua_State *L) | |||
95 | 0, error, 0, buffer, sizeof(buffer), 0)) | 95 | 0, error, 0, buffer, sizeof(buffer), 0)) |
96 | lua_pushstring(L,buffer); | 96 | lua_pushstring(L,buffer); |
97 | else | 97 | else |
98 | lua_pushfstring("system error %d\n",error); | 98 | lua_pushfstring(L,"system error %d\n",error); |
99 | } | 99 | } |
100 | 100 | ||
101 | static int loadlib(lua_State *L) | 101 | static int loadlib(lua_State *L) |