From fbf1b09514711cd9c2017fc88ffb7482105da589 Mon Sep 17 00:00:00 2001 From: "K. Lange" Date: Mon, 12 Feb 2024 12:05:26 +0900 Subject: [PATCH] Fix missing spaces in tools/compile --- tools/compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/compile.c b/tools/compile.c index 1b6ce7d..7e3ae10 100644 --- a/tools/compile.c +++ b/tools/compile.c @@ -323,7 +323,7 @@ static int doSecondPass(FILE * out) { break; } fprintf(stderr, - "Invalid object found in constants table," + "Invalid object found in constants table, " "this marashal format can not store '%s'\n", krk_typeName(*val)); return 1; @@ -341,7 +341,7 @@ static int doSecondPass(FILE * out) { break; } fprintf(stderr, - "Invalid value found in constants table," + "Invalid value found in constants table, " "this marashal format can not store '%s'\n", krk_typeName(*val)); return 1;