]> git.seodisparate.com - SimpleArchiver/commitdiff
Comment out debug print
authorStephen Seo <seo.disparate@gmail.com>
Wed, 24 Jul 2024 06:05:01 +0000 (15:05 +0900)
committerStephen Seo <seo.disparate@gmail.com>
Wed, 24 Jul 2024 06:05:01 +0000 (15:05 +0900)
src/parser.c

index 228073f34b71573f6a897ad6b39c07f8ad4bad3c..d1646182ffd9e1c962b411ddd872e26d52d16db0 100644 (file)
@@ -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,