summaryrefslogtreecommitdiff
path: root/lundump.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-11-07 10:44:44 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-11-07 10:44:44 -0200
commit523c5d8e1c5c62f16586e93baceb6fcddd0a3ded (patch)
tree7a2d415fe72859f994b34bb9f86beb1a419f8381 /lundump.c
parent40a4c767739f70645ea71bbf6330f4ad5e48ca55 (diff)
downloadlua-github-4_0.tar.gz
last changes by lhf.v4_0v4.0
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 @@
/*
-** $Id: lundump.c,v 1.32 2000/09/21 03:15:36 lhf Exp lhf $
+** $Id: lundump.c,v 1.33 2000/10/31 16:57:23 lhf Exp $
** load bytecodes from files
** See Copyright Notice in lua.h
*/
@@ -178,7 +178,7 @@ static void TestSize (lua_State* L, int s, const char* what, ZIO* Z)
int r=ezgetc(L,Z);
if (r!=s)
luaO_verror(L,"virtual machine mismatch in `%.99s':\n"
- " %s is %d but read %d",ZNAME(Z),what,s,r);
+ " %.20s is %d but read %d",ZNAME(Z),what,s,r);
}
#define TESTSIZE(s) TestSize(L,s,#s,Z)