diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-01-03 20:25:02 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-01-03 20:25:02 +0900 |
| commit | 5798c03de610881767c8653e00d6dd1989da6039 (patch) | |
| tree | 5c5bd86b70c63c55a49284cd50f2279313b0acb8 /src/codedump.c | |
| parent | c52efe7be8e3d3a3029b2e53de8ba5f79b060d47 (diff) | |
| parent | f23918f61a72e937e20adb02bad8e3e271e75e3b (diff) | |
| download | mruby-5798c03de610881767c8653e00d6dd1989da6039.tar.gz mruby-5798c03de610881767c8653e00d6dd1989da6039.zip | |
Merge pull request #5256 from katsuyoshi/master
replace ; to : of OPT_SETGV in codedump.c
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); |
