Skip to content

Commit fe201dc

Browse files
committed
core/codegen.c: remove unneeded duplicate semicolon
1 parent 9c6349c commit fe201dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

mrbgems/mruby-compiler/core/codegen.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -860,7 +860,7 @@ merge_op_string(codegen_scope *s, uint16_t dst, uint16_t b1, uint16_t b2, const
860860
mrb_irep_pool *p2 = &s->pool[b2];
861861
mrb_int len1 = p1->tt>>2;
862862
mrb_int len2 = p2->tt>>2;
863-
int off = find_pool_str(s, p1->u.str, len1, p2->u.str, len2);;
863+
int off = find_pool_str(s, p1->u.str, len1, p2->u.str, len2);
864864

865865
if (off < 0) {
866866
switch (used) {

0 commit comments

Comments
 (0)