aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
Diffstat (limited to 'lcode.c')
-rw-r--r--lcode.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lcode.c b/lcode.c
index c25226ab..42670794 100644
--- a/lcode.c
+++ b/lcode.c
@@ -1837,8 +1837,8 @@ static int finaltarget (Instruction *code, int i) {
1837 Instruction pc = code[i]; 1837 Instruction pc = code[i];
1838 if (GET_OPCODE(pc) != OP_JMP) 1838 if (GET_OPCODE(pc) != OP_JMP)
1839 break; 1839 break;
1840 else 1840 else
1841 i += GETARG_sJ(pc) + 1; 1841 i += GETARG_sJ(pc) + 1;
1842 } 1842 }
1843 return i; 1843 return i;
1844} 1844}