aboutsummaryrefslogtreecommitdiff
path: root/lstate.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-06 15:17:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-06-06 15:17:33 -0300
commit000d081fd0966ba8f39178186d30319df37d631f (patch)
tree9260d75fcdf08fbf118330dc87316a6b52770c61 /lstate.c
parent65d66ba27592271cda71caefe231f9ee2d909d5c (diff)
downloadlua-000d081fd0966ba8f39178186d30319df37d631f.tar.gz
lua-000d081fd0966ba8f39178186d30319df37d631f.tar.bz2
lua-000d081fd0966ba8f39178186d30319df37d631f.zip
warnings from other compilers
Diffstat (limited to 'lstate.c')
-rw-r--r--lstate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lstate.c b/lstate.c
index 99b4bf75..45f534ca 100644
--- a/lstate.c
+++ b/lstate.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.c,v 1.94 2002/05/08 17:34:23 roberto Exp roberto $ 2** $Id: lstate.c,v 1.95 2002/06/03 14:09:57 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*/
@@ -28,6 +28,7 @@ static void close_state (lua_State *L);
28** call `lua_setpanicf' 28** call `lua_setpanicf'
29*/ 29*/
30static int default_panic (lua_State *L) { 30static int default_panic (lua_State *L) {
31 UNUSED(L);
31 return 0; 32 return 0;
32} 33}
33 34