From: Stephen Seo Date: Wed, 24 Jul 2024 06:05:01 +0000 (+0900) Subject: Comment out debug print X-Git-Tag: 1.0~32 X-Git-Url: https://git.seodisparate.com/stephenseo/client_config?a=commitdiff_plain;h=852c931d8b09f926fe561978cdee1ddbf00343dc;p=SimpleArchiver Comment out debug print --- diff --git a/src/parser.c b/src/parser.c index 228073f..d164618 100644 --- a/src/parser.c +++ b/src/parser.c @@ -388,7 +388,8 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames( strcmp(dir_entry->d_name, "..") == 0) { continue; } - fprintf(stderr, "dir entry in %s is %s\n", next, dir_entry->d_name); + // fprintf(stderr, "dir entry in %s is %s\n", next, + // dir_entry->d_name); int combined_size = strlen(next) + strlen(dir_entry->d_name) + 2; char *combined_path = malloc(combined_size); snprintf(combined_path, combined_size, "%s/%s", next,