From 25be035c3733124e17f0868f16343ef43e03bf58 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 20 Sep 2021 18:15:23 -0500 Subject: [PATCH] Bugfix: Should be using '%Q' and not '%S'. This is a dynamic or static string rather than a string, so use '%Q'. --- level_3/fake/c/private-build.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) { -- 1.8.3.1