codedump.c: remove trailing extra newline.

The bug was introduced in 8be78bd.
parent 9aa3c262
...@@ -477,7 +477,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep) ...@@ -477,7 +477,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
print_lv_a(mrb, irep, a); print_lv_a(mrb, irep, a);
break; break;
CASE(OP_STRCAT, B): CASE(OP_STRCAT, B):
printf("OP_STRCAT\tR%d\tR%d\n", a, a+1); printf("OP_STRCAT\tR%d\tR%d", a, a+1);
print_lv_a(mrb, irep, a); print_lv_a(mrb, irep, a);
break; break;
CASE(OP_HASH, BB): CASE(OP_HASH, BB):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment