From 868691e8ef5f133ecf1582dce3bc33134499376a Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 16 Jan 2023 22:24:43 -0600 Subject: [PATCH] Bugfix: Incorrect stream used when printing output in verbose directory recursion. I somehow ended up with the input stream being written to. This is clearly wrong. How did I not notice this one? --- level_3/fake/c/private-clean.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/level_3/fake/c/private-clean.c b/level_3/fake/c/private-clean.c index dad819b..5cb7b67 100644 --- a/level_3/fake/c/private-clean.c +++ b/level_3/fake/c/private-clean.c @@ -56,7 +56,7 @@ extern "C" { if (!result) { // @todo in order to get this working, the recursive function that calls this needs to be rewritten with more flexibility or provide a higher-level equivalent function. - fll_print_format("Removed '%S'.%r", F_type_input_d, path, f_string_eol_s); + fll_print_format("Removed '%S'.%r", F_type_output_d, path, f_string_eol_s); } return result; -- 1.8.3.1