summaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
Diffstat (limited to 'lundump.c')
-rw-r--r--lundump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lundump.c b/lundump.c
index 022b25ba..a8d06106 100644
--- a/lundump.c
+++ b/lundump.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lundump.c,v 1.32 2000/09/21 03:15:36 lhf Exp lhf $ 2** $Id: lundump.c,v 1.33 2000/10/31 16:57:23 lhf Exp $
3** load bytecodes from files 3** load bytecodes from files
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -178,7 +178,7 @@ static void TestSize (lua_State* L, int s, const char* what, ZIO* Z)
178 int r=ezgetc(L,Z); 178 int r=ezgetc(L,Z);
179 if (r!=s) 179 if (r!=s)
180 luaO_verror(L,"virtual machine mismatch in `%.99s':\n" 180 luaO_verror(L,"virtual machine mismatch in `%.99s':\n"
181 " %s is %d but read %d",ZNAME(Z),what,s,r); 181 " %.20s is %d but read %d",ZNAME(Z),what,s,r);
182} 182}
183 183
184#define TESTSIZE(s) TestSize(L,s,#s,Z) 184#define TESTSIZE(s) TestSize(L,s,#s,Z)