From adb16fc6dfc27a39b783782e3a12d877e71c78ac Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Fri, 21 Jan 2022 10:51:07 +0900 Subject: [PATCH] codegen.c: adjust indentation after `OP_STRCAT`. --- src/codedump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/codedump.c b/src/codedump.c index 62b2fbd63..20397907e 100644 --- a/src/codedump.c +++ b/src/codedump.c @@ -503,7 +503,7 @@ codedump(mrb_state *mrb, const mrb_irep *irep) print_lv_a(mrb, irep, a); break; CASE(OP_STRCAT, B): - printf("STRCAT\tR%d\tR%d", a, a+1); + printf("STRCAT\tR%d\tR%d\t", a, a+1); print_lv_a(mrb, irep, a); break; CASE(OP_HASH, BB):