From 49efa4fafcab8f70331e5a34bdddb1236bf06614 Mon Sep 17 00:00:00 2001 From: Christoffer Lerno Date: Mon, 6 Dec 2021 09:19:37 +0100 Subject: [PATCH] Missing \n in output. --- 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 06012a909..3e8053807 100644 --- a/src/compiler/compiler.c +++ b/src/compiler/compiler.c @@ -452,7 +452,7 @@ void compiler_compile(void) if (!obj_format_linking_supported(platform_target.object_format) || !linker(active_target.name, obj_files, output_file_count)) { - printf("No linking is performed due to missing linker support."); + printf("No linking is performed due to missing linker support.\n"); active_target.run_after_compile = false; } }