diff options
| author | Katsuyoshi Ito <[email protected]> | 2021-01-03 19:47:30 +0900 |
|---|---|---|
| committer | Katsuyoshi Ito <[email protected]> | 2021-01-03 19:47:30 +0900 |
| commit | f23918f61a72e937e20adb02bad8e3e271e75e3b (patch) | |
| tree | 5c5bd86b70c63c55a49284cd50f2279313b0acb8 /src/codedump.c | |
| parent | c52efe7be8e3d3a3029b2e53de8ba5f79b060d47 (diff) | |
| download | mruby-f23918f61a72e937e20adb02bad8e3e271e75e3b.tar.gz mruby-f23918f61a72e937e20adb02bad8e3e271e75e3b.zip | |
replace ; to : of OPT_SETGV in codedump.c
Maybe it's a typo.
Diffstat (limited to 'src/codedump.c')
| -rw-r--r-- | src/codedump.c | 2 |
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); |
