lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 9b7af7e45bfe3432be8fea27e70de076b22f805f
parent 2e66248f8a8e8e880d3d2010462bed9403f24f08
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Tue, 18 Mar 2003 09:24:39 -0300

tests for Windows version

Diffstat:
Mloadlib.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/loadlib.c b/loadlib.c @@ -1,5 +1,5 @@ /* -** $Id$ +** $Id: loadlib.c,v 1.1 2003/03/17 13:01:48 roberto Exp roberto $ ** Bare-bones dynamic library loader for Lua ** See Copyright Notice in lua.h * @@ -95,7 +95,7 @@ static void pusherror(lua_State *L) 0, error, 0, buffer, sizeof(buffer), 0)) lua_pushstring(L,buffer); else - lua_pushfstring("system error %d\n",error); + lua_pushfstring(L,"system error %d\n",error); } static int loadlib(lua_State *L)