]> Kevux Git Server - fll/commitdiff
Bugfix: Incorrect stream used when printing output in verbose directory recursion.
authorKevin Day <thekevinday@gmail.com>
Tue, 17 Jan 2023 04:24:43 +0000 (22:24 -0600)
committerKevin Day <thekevinday@gmail.com>
Tue, 17 Jan 2023 04:24:43 +0000 (22:24 -0600)
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

index dad819bbcc7f14bc956c8a15465a6ea91694fa79..5cb7b673a5d9c768d74f3f1009e19887cb967e48 100644 (file)
@@ -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;