aboutsummaryrefslogtreecommitdiff
path: root/lcode.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-09-06 14:35:04 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2024-09-06 14:35:04 -0300
commit007b8c7a01eaa97d796561a19c7e9af1ec474495 (patch)
treed21133c450f4579b19a61f15fbf840e3fd82d097 /lcode.c
parentfd0e1f530d06340f99334b07d74e5133ce073787 (diff)
downloadlua-007b8c7a01eaa97d796561a19c7e9af1ec474495.tar.gz
lua-007b8c7a01eaa97d796561a19c7e9af1ec474495.tar.bz2
lua-007b8c7a01eaa97d796561a19c7e9af1ec474495.zip
Details
Identation + comments
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}