From 376e84c9d7153154030218c980b0a3485021470a Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 6 Oct 2021 07:36:44 +0900 Subject: codedump.c: remove trailing extra newline. The bug was introduced in 8be78bd. --- src/codedump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/codedump.c') 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): -- cgit v1.2.3