aboutsummaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lundump.c b/lundump.c
index 6a7012b1..0c146272 100644
--- a/lundump.c
+++ b/lundump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.c,v 1.71 2011/12/07 10:39:12 lhf Exp lhf $ 2** $Id: lundump.c,v 2.19 2011/12/07 18:03:47 roberto Exp roberto $
3** load precompiled Lua chunks 3** load precompiled Lua chunks
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -118,6 +118,7 @@ static void LoadConstants(LoadState* S, Proto* f)
118 case LUA_TSTRING: 118 case LUA_TSTRING:
119 setsvalue2n(S->L,o,LoadString(S)); 119 setsvalue2n(S->L,o,LoadString(S));
120 break; 120 break;
121 default: lua_assert(0);
121 } 122 }
122 } 123 }
123 n=LoadInt(S); 124 n=LoadInt(S);