mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
add missing newlines in output messages when creating libraries
Signed-off-by: Pierre Curto <pierre.curto@gmail.com>
This commit is contained in:
committed by
Christoffer Lerno
parent
f651a59294
commit
550b1f23ec
@@ -506,7 +506,7 @@ void compiler_compile(void)
|
||||
delete_object_files(obj_files, output_file_count);
|
||||
compiler_link_time = bench_mark();
|
||||
compiler_print_bench();
|
||||
printf("Static library '%s' created.", output_static);
|
||||
printf("Static library '%s' created.\n", output_static);
|
||||
}
|
||||
else if (output_dynamic)
|
||||
{
|
||||
@@ -515,7 +515,7 @@ void compiler_compile(void)
|
||||
error_exit("Failed to produce static library '%s'.", output_dynamic);
|
||||
}
|
||||
delete_object_files(obj_files, output_file_count);
|
||||
printf("Dynamic library '%s' created.", output_dynamic);
|
||||
printf("Dynamic library '%s' created.\n", output_dynamic);
|
||||
compiler_link_time = bench_mark();
|
||||
compiler_print_bench();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user