diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-01-09 09:24:12 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2018-01-09 09:24:12 -0200 |
commit | 33e3774f447cbcfa4fe43b8b47d0306e52937428 (patch) | |
tree | dc94b4a1cc4ef596747b0c5393b62eebd9fc714a /ltests.c | |
parent | a9295a2b8ebca6bb7071c4424fd318afa33ebb9e (diff) | |
download | lua-33e3774f447cbcfa4fe43b8b47d0306e52937428.tar.gz lua-33e3774f447cbcfa4fe43b8b47d0306e52937428.tar.bz2 lua-33e3774f447cbcfa4fe43b8b47d0306e52937428.zip |
keep more opcode arguments byte-aligned
Diffstat (limited to 'ltests.c')
-rw-r--r-- | ltests.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltests.c,v 2.237 2017/12/15 18:53:48 roberto Exp roberto $ | 2 | ** $Id: ltests.c,v 2.239 2018/01/09 11:21:41 roberto Exp $ |
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 | */ |
@@ -557,7 +557,7 @@ static char *buildop (Proto *p, int pc, char *buff) { | |||
557 | break; | 557 | break; |
558 | case isJ: | 558 | case isJ: |
559 | sprintf(buff+strlen(buff), "%-12s%4d (%1d)", name, GETARG_sJ(i), | 559 | sprintf(buff+strlen(buff), "%-12s%4d (%1d)", name, GETARG_sJ(i), |
560 | !!GETARG_k(i)); | 560 | !!GETARG_m(i)); |
561 | break; | 561 | break; |
562 | } | 562 | } |
563 | return buff; | 563 | return buff; |