From dbd63450d93303bdeab6bbe5297b5dc8fe46e8bd Mon Sep 17 00:00:00 2001 From: Cary R Date: Sun, 10 Jan 2021 13:56:34 -0800 Subject: [PATCH] Cleanup space in ivlpp command generation --- driver/main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/driver/main.c b/driver/main.c index bb05e4144..c07fb7a62 100644 --- a/driver/main.c +++ b/driver/main.c @@ -355,15 +355,15 @@ static int t_version_only(void) static void build_preprocess_command(int e_flag) { - snprintf(tmp, sizeof tmp, "%s%civlpp %s%s%s -F\"%s\" -f\"%s\" -p\"%s\"%s", + snprintf(tmp, sizeof tmp, "%s%civlpp%s%s%s -F\"%s\" -f\"%s\" -p\"%s\"%s", ivlpp_dir, sep, verbose_flag ? " -v" : "", e_flag ? "" : " -L", - strchr(warning_flags, 'r') ? " -Wredef-all " : - strchr(warning_flags, 'R') ? " -Wredef-chg " : "", + strchr(warning_flags, 'r') ? " -Wredef-all" : + strchr(warning_flags, 'R') ? " -Wredef-chg" : "", defines_path, source_path, compiled_defines_path, - e_flag ? "" : " | "); + e_flag ? "" : " |"); } static int t_preprocess_only(void)