From 33e3774f447cbcfa4fe43b8b47d0306e52937428 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 9 Jan 2018 09:24:12 -0200 Subject: keep more opcode arguments byte-aligned --- ltests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ltests.c') diff --git a/ltests.c b/ltests.c index 513c846b..569c1896 100644 --- a/ltests.c +++ b/ltests.c @@ -1,5 +1,5 @@ /* -** $Id: ltests.c,v 2.237 2017/12/15 18:53:48 roberto Exp roberto $ +** $Id: ltests.c,v 2.239 2018/01/09 11:21:41 roberto Exp $ ** Internal Module for Debugging of the Lua Implementation ** See Copyright Notice in lua.h */ @@ -557,7 +557,7 @@ static char *buildop (Proto *p, int pc, char *buff) { break; case isJ: sprintf(buff+strlen(buff), "%-12s%4d (%1d)", name, GETARG_sJ(i), - !!GETARG_k(i)); + !!GETARG_m(i)); break; } return buff; -- cgit v1.2.3-55-g6feb