Comment out debug print
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 4s

This commit is contained in:
Stephen Seo 2024-07-18 15:32:48 +09:00
parent 4985672ea2
commit 735d2b4f7a

View file

@ -747,7 +747,7 @@ int simple_archiver_parse_archive_info(FILE *in_f, int do_extract,
key[len - 1] = 0; key[len - 1] = 0;
simple_archiver_hash_map_insert(&hash_map, key, key, len, cleanup_nop_fn, simple_archiver_hash_map_insert(&hash_map, key, key, len, cleanup_nop_fn,
cleanup_free_fn); cleanup_free_fn);
fprintf(stderr, "\"%s\" put in map\n", key); // fprintf(stderr, "\"%s\" put in map\n", key);
} }
} }
for (uint32_t idx = 0; idx < size; ++idx) { for (uint32_t idx = 0; idx < size; ++idx) {