Comment out debug print
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 5s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 5s
This commit is contained in:
parent
55cd3b2659
commit
852c931d8b
1 changed files with 2 additions and 1 deletions
|
@ -388,7 +388,8 @@ SDArchiverLinkedList *simple_archiver_parsed_to_filenames(
|
||||||
strcmp(dir_entry->d_name, "..") == 0) {
|
strcmp(dir_entry->d_name, "..") == 0) {
|
||||||
continue;
|
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;
|
int combined_size = strlen(next) + strlen(dir_entry->d_name) + 2;
|
||||||
char *combined_path = malloc(combined_size);
|
char *combined_path = malloc(combined_size);
|
||||||
snprintf(combined_path, combined_size, "%s/%s", next,
|
snprintf(combined_path, combined_size, "%s/%s", next,
|
||||||
|
|
Loading…
Reference in a new issue