From 4cdfac092b6bf2fd76f43b2f6f977e00499dc89e Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Mon, 24 Oct 2022 17:15:51 +0200 Subject: [PATCH] Add missing \n to program finish on run. --- src/compiler/compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/compiler.c b/src/compiler/compiler.c index 0ae0bd60c..5a03167c7 100644 --- a/src/compiler/compiler.c +++ b/src/compiler/compiler.c @@ -441,7 +441,7 @@ void compiler_compile(void) DEBUG_LOG("Will run"); printf("Launching %s...\n", output_exe); int ret = system(platform_target.os == OS_TYPE_WIN32 ? output_exe : str_printf("./%s", output_exe)); - printf("Program finished with exit code %d.", ret); + printf("Program finished with exit code %d.\n", ret); } } if (output_static)