diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-06 15:17:33 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-06-06 15:17:33 -0300 |
commit | 000d081fd0966ba8f39178186d30319df37d631f (patch) | |
tree | 9260d75fcdf08fbf118330dc87316a6b52770c61 /lstate.c | |
parent | 65d66ba27592271cda71caefe231f9ee2d909d5c (diff) | |
download | lua-000d081fd0966ba8f39178186d30319df37d631f.tar.gz lua-000d081fd0966ba8f39178186d30319df37d631f.tar.bz2 lua-000d081fd0966ba8f39178186d30319df37d631f.zip |
warnings from other compilers
Diffstat (limited to 'lstate.c')
-rw-r--r-- | lstate.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 | */ |
30 | static int default_panic (lua_State *L) { | 30 | static int default_panic (lua_State *L) { |
31 | UNUSED(L); | ||
31 | return 0; | 32 | return 0; |
32 | } | 33 | } |
33 | 34 | ||