summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--loslib.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/loslib.c b/loslib.c
index 760d84a2..26c1203a 100644
--- a/loslib.c
+++ b/loslib.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: loslib.c,v 1.16 2005/12/22 16:19:56 roberto Exp roberto $ 2** $Id: loslib.c,v 1.17 2006/01/27 13:54:31 roberto Exp roberto $
3** Standard Operating System library 3** Standard Operating System library
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -28,10 +28,7 @@ static int os_pushresult (lua_State *L, int i, const char *filename) {
28 } 28 }
29 else { 29 else {
30 lua_pushnil(L); 30 lua_pushnil(L);
31 if (filename) 31 lua_pushfstring(L, "%s: %s", filename, strerror(en));
32 lua_pushfstring(L, "%s: %s", filename, strerror(en));
33 else
34 lua_pushfstring(L, "%s", strerror(en));
35 lua_pushinteger(L, en); 32 lua_pushinteger(L, en);
36 return 3; 33 return 3;
37 } 34 }