From 0727142f1e9a4e3f9857ee511d29de9dfaeded8a Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Tue, 16 Jul 2024 15:19:02 +0200 Subject: [PATCH] remove file count --- src/main.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main.c b/src/main.c index 6c049af..83f8778 100644 --- a/src/main.c +++ b/src/main.c @@ -18,8 +18,6 @@ void rename_files(const char* dir_path) glob(pattern, 0, NULL, &files); - printf("count: %ld\n", files.gl_pathc); - for (int i = 0; i < files.gl_pathc; i++) { stat(files.gl_pathv[i], &statbuf); rename_lower_str(files.gl_pathv[i], output_filename); -- 2.39.5