diff options
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstate.c,v 1.91 2002/04/23 15:04:39 roberto Exp roberto $ | 2 | ** $Id: lstate.c,v 1.92 2002/05/01 20:40:42 roberto Exp roberto $ |
3 | ** Global State | 3 | ** Global State |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -30,7 +30,7 @@ static void close_state (lua_State *L); | |||
30 | ** call `lua_setpanicf' | 30 | ** call `lua_setpanicf' |
31 | */ | 31 | */ |
32 | static int default_panic (lua_State *L) { | 32 | static int default_panic (lua_State *L) { |
33 | fprintf(stderr, "unable to recover; exiting\n"); | 33 | fputs("unable to recover; exiting\n", stderr); |
34 | return 0; | 34 | return 0; |
35 | } | 35 | } |
36 | 36 | ||