From: Kevin Day Date: Mon, 20 Sep 2021 23:15:23 +0000 (-0500) Subject: Bugfix: Should be using '%Q' and not '%S'. X-Git-Tag: 0.5.6~40 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=25be035c3733124e17f0868f16343ef43e03bf58;p=fll Bugfix: Should be using '%Q' and not '%S'. This is a dynamic or static string rather than a string, so use '%Q'. --- diff --git a/level_3/fake/c/private-build.c b/level_3/fake/c/private-build.c index 1bfd45a..d31a8ca 100644 --- a/level_3/fake/c/private-build.c +++ b/level_3/fake/c/private-build.c @@ -2974,7 +2974,7 @@ extern "C" { } if (main.error.verbosity == f_console_verbosity_verbose) { - fll_print_format("Directory '%S' created.%c", main.output.stream, destination_path, f_string_eol_s[0]); + fll_print_format("Directory '%Q' created.%c", main.output.stream, destination_path, f_string_eol_s[0]); } } else if (F_status_is_error(*status)) {