Derrick Stolee [off-list ref] writes:
On 9/12/2025 6:30 AM, Derrick Stolee via GitGitGadget wrote:
quoted
From: Derrick Stolee <redacted>
quoted
+static void list_every_file_in_dir(const char *msg,
+ const char *directory)
+{
+ struct strbuf path = STRBUF_INIT;
+
+ strbuf_addstr(&path, directory);
+ fprintf(stderr, "list every file in %s\n", directory);
I don't know how I missed that this debugging output line snuck
in and stayed through my testing. This line should be removed.
quoted
+ for_each_file_in_dir(&path, list_file_iterator, msg);
+ strbuf_release(&path);
+}
;-) Don't feel bad. Nobody among other people caught it either.
Locally amended so no need to resubmit only to fix this.
Thanks.