summaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-24 17:07:46 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-04-24 17:07:46 -0300
commit9b38a696d5ccd6dd98685a74e8762a69e8722840 (patch)
tree3d9d09465dd7977ef0692091635913aab2fd90a9 /ltests.c
parent383e8b9e778d2bed9dc4347f441803e2c4f99d09 (diff)
downloadlua-9b38a696d5ccd6dd98685a74e8762a69e8722840.tar.gz
lua-9b38a696d5ccd6dd98685a74e8762a69e8722840.tar.bz2
lua-9b38a696d5ccd6dd98685a74e8762a69e8722840.zip
avoid names that differ only in capitalization
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ltests.c b/ltests.c
index 4893b312..bd8469f3 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.115 2002/04/02 20:43:08 roberto Exp roberto $ 2** $Id: ltests.c,v 1.116 2002/04/05 18:54:31 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -151,11 +151,11 @@ static char *buildop (Proto *p, int pc, char *buff) {
151 sprintf(buff+strlen(buff), "%-12s%4d %4d %4d", name, 151 sprintf(buff+strlen(buff), "%-12s%4d %4d %4d", name,
152 GETARG_A(i), GETARG_B(i), GETARG_C(i)); 152 GETARG_A(i), GETARG_B(i), GETARG_C(i));
153 break; 153 break;
154 case iABc: 154 case iABx:
155 sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_Bc(i)); 155 sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_Bx(i));
156 break; 156 break;
157 case iAsBc: 157 case iAsBx:
158 sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_sBc(i)); 158 sprintf(buff+strlen(buff), "%-12s%4d %4d", name, GETARG_A(i), GETARG_sBx(i));
159 break; 159 break;
160 } 160 }
161 return buff; 161 return buff;