diff options
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; |