From 026fa80cdb3cdca439447d17eefb2de51a2aa577 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 18 Feb 2023 22:20:28 -0600 Subject: [PATCH] Bugfix: Argument variable passed is a pointer, print the value not the pointer. --- level_3/fake/c/private-make-operate_process_type.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/fake/c/private-make-operate_process_type.c b/level_3/fake/c/private-make-operate_process_type.c index 825fb8e..be6a43c 100644 --- a/level_3/fake/c/private-make-operate_process_type.c +++ b/level_3/fake/c/private-make-operate_process_type.c @@ -1712,7 +1712,7 @@ extern "C" { // The created relative path is for verbosity purposes and as such its failure to be processed should not be treated as a failure of the function. if (F_status_is_error(status)) { fll_error_print(data_make->error, F_status_set_fine(status), "fake_make_path_relative", F_true); - fll_print_format("Changed project path to '%[%Q%]'.%r", data_make->main->output.to.stream, data_make->main->context.set.notable, argument, data_make->main->context.set.notable, f_string_eol_s); + fll_print_format("Changed project path to '%[%Q%]'.%r", data_make->main->output.to.stream, data_make->main->context.set.notable, *argument, data_make->main->context.set.notable, f_string_eol_s); return F_status_set_error(F_failure); } -- 1.8.3.1