summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorKatsuyoshi Ito <[email protected]>2021-01-03 19:47:30 +0900
committerKatsuyoshi Ito <[email protected]>2021-01-03 19:47:30 +0900
commitf23918f61a72e937e20adb02bad8e3e271e75e3b (patch)
tree5c5bd86b70c63c55a49284cd50f2279313b0acb8 /src
parentc52efe7be8e3d3a3029b2e53de8ba5f79b060d47 (diff)
downloadmruby-f23918f61a72e937e20adb02bad8e3e271e75e3b.tar.gz
mruby-f23918f61a72e937e20adb02bad8e3e271e75e3b.zip
replace ; to : of OPT_SETGV in codedump.c
Maybe it's a typo.
Diffstat (limited to 'src')
-rw-r--r--src/codedump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codedump.c b/src/codedump.c
index b005c1173..e6c6e6c3d 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -219,7 +219,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
print_lv_a(mrb, irep, a);
break;
CASE(OP_SETGV, BB);
- printf("OP_SETGV\t;%s\tR%d", mrb_sym_dump(mrb, irep->syms[b]), a);
+ printf("OP_SETGV\t:%s\tR%d", mrb_sym_dump(mrb, irep->syms[b]), a);
print_lv_a(mrb, irep, a);
break;
CASE(OP_GETSV, BB);