summaryrefslogtreecommitdiffhomepage
path: root/src/codedump.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-10-06 07:36:44 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-10-06 07:36:44 +0900
commit376e84c9d7153154030218c980b0a3485021470a (patch)
treef18bb340cd03882b36759bcd8cec31c21b65c9f8 /src/codedump.c
parent9aa3c26221acacbf1ede443356e0b5edd9a8ddc2 (diff)
downloadmruby-376e84c9d7153154030218c980b0a3485021470a.tar.gz
mruby-376e84c9d7153154030218c980b0a3485021470a.zip
codedump.c: remove trailing extra newline.
The bug was introduced in 8be78bd.
Diffstat (limited to 'src/codedump.c')
-rw-r--r--src/codedump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codedump.c b/src/codedump.c
index df88b37fc..64f6314cf 100644
--- a/src/codedump.c
+++ b/src/codedump.c
@@ -477,7 +477,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep)
print_lv_a(mrb, irep, a);
break;
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);
break;
CASE(OP_HASH, BB):