]> Kevux Git Server - fll/commitdiff
Bugfix: Should be using '%Q' and not '%S'.
authorKevin Day <thekevinday@gmail.com>
Mon, 20 Sep 2021 23:15:23 +0000 (18:15 -0500)
committerKevin Day <thekevinday@gmail.com>
Mon, 20 Sep 2021 23:15:23 +0000 (18:15 -0500)
This is a dynamic or static string rather than a string, so use '%Q'.

level_3/fake/c/private-build.c

index 1bfd45ab94a3107f92bbfb5d23073cc3211b7e1e..d31a8cae2a1e2b273e13ecbbc36eb4617287f57e 100644 (file)
@@ -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)) {