From 53fefb7ae860409ecb19507eb16c6ce52e6c1a7d Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 30 Sep 2024 15:15:00 +0900 Subject: [PATCH] Remove unnecessary printf used for testing --- src/archiver.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/archiver.c b/src/archiver.c index f30e36c..4ed4ed3 100644 --- a/src/archiver.c +++ b/src/archiver.c @@ -1119,7 +1119,6 @@ int read_decomp_to_out_file(const char *out_filename, int in_pipe, // Error. fprintf(stderr, "ERROR Failed to read from decompressor! (%d)\n", errno); - fprintf(stderr, "EAGAIN %d, EWOULDBLOCK %d\n", EAGAIN, EWOULDBLOCK); return SDAS_INTERNAL_ERROR; } }