From: Kevin Day Date: Sat, 2 Oct 2021 03:34:49 +0000 (-0500) Subject: Cleanup: Remove quotes from number on printing. X-Git-Tag: 0.5.6~27 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=d5589fed7f12f7cef8ec76f87c831206d3c29ce1;p=fll Cleanup: Remove quotes from number on printing. The practice that I am starting to follow when printing is to quote text but not to quote numbers. --- diff --git a/level_3/controller/c/private-rule.c b/level_3/controller/c/private-rule.c index 61eab06..c62cd91 100644 --- a/level_3/controller/c/private-rule.c +++ b/level_3/controller/c/private-rule.c @@ -756,9 +756,9 @@ extern "C" { fl_print_format("%['.%]%c", print.to.stream, print.context, print.context, f_string_eol_s[0]); } else if (code) { - fl_print_format("%[' failed with the exit code '%]", print.to.stream, print.context, print.context); + fl_print_format("%[' failed with the exit code %]", print.to.stream, print.context, print.context); fl_print_format("%[%i%]", print.to.stream, print.notable, code, print.notable); - fl_print_format("%['.%]%c", print.to.stream, print.context, print.context, f_string_eol_s[0]); + fl_print_format("%[.%]%c", print.to.stream, print.context, print.context, f_string_eol_s[0]); } else { fl_print_format("%[' failed.%]%c", print.to.stream, print.context, print.context, f_string_eol_s[0]);