Output when writing file to archive
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 4s
All checks were successful
Run Unit Tests / build-and-run-unit-tests (push) Successful in 4s
This commit is contained in:
parent
be67425d21
commit
fe04dc7018
1 changed files with 2 additions and 0 deletions
|
@ -293,6 +293,7 @@ int write_files_fn(void *data, void *ud) {
|
||||||
simple_archiver_list_free(&to_write);
|
simple_archiver_list_free(&to_write);
|
||||||
|
|
||||||
// Write file.
|
// Write file.
|
||||||
|
fprintf(stderr, "Writing compressed file: %s\n", file_info->filename);
|
||||||
do {
|
do {
|
||||||
write_count = fread(write_buf, 1, 1024, tmp_fd);
|
write_count = fread(write_buf, 1, 1024, tmp_fd);
|
||||||
if (write_count == 1024) {
|
if (write_count == 1024) {
|
||||||
|
@ -377,6 +378,7 @@ int write_files_fn(void *data, void *ud) {
|
||||||
simple_archiver_list_free(&to_write);
|
simple_archiver_list_free(&to_write);
|
||||||
|
|
||||||
// Write file.
|
// Write file.
|
||||||
|
fprintf(stderr, "Writing file: %s\n", file_info->filename);
|
||||||
char buf[1024];
|
char buf[1024];
|
||||||
size_t ret;
|
size_t ret;
|
||||||
do {
|
do {
|
||||||
|
|
Loading…
Reference in a new issue