From: Kevin Day Date: Tue, 17 Jan 2023 04:24:43 +0000 (-0600) Subject: Bugfix: Incorrect stream used when printing output in verbose directory recursion. X-Git-Tag: 0.6.4~95 X-Git-Url: https://git.kevux.org/?a=commitdiff_plain;h=868691e8ef5f133ecf1582dce3bc33134499376a;p=fll 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? --- 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;