From 06fe82b2f1c53196c52d06419527b871b93c06d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mario=20H=C3=BCttel?= Date: Fri, 6 Jan 2023 16:37:33 +0100 Subject: [PATCH] Add missing newline to error prints --- src/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 3a6e7da..5a51a2f 100644 --- a/src/main.c +++ b/src/main.c @@ -429,12 +429,12 @@ int main(int argc, char **argv) } if (cmd_opts.export_xml && cmd_opts.import_xml) { - print_err("XML export and input cannot be specified at the same time."); + print_err("XML export and input cannot be specified at the same time.\n"); return -2; } if (cmd_opts.use_vma && cmd_opts.format != FORMAT_STRUCT) { - print_warn("--use-vma option only has an effect when exporting as struct output."); + print_warn("--use-vma option only has an effect when exporting as struct output.\n"); } if (!cmd_opts.output_section && cmd_opts.export_xml == NULL) {