summaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.c b/lstate.c
index bb568aa0..372dcc17 100644
--- a/lstate.c
+++ b/lstate.c
@@ -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*/
32static int default_panic (lua_State *L) { 32static 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