From 70132c3ac19898573f852365e789384c2d4e1324 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sun, 18 Sep 2022 14:24:18 +0200 Subject: [PATCH] Do not show I/O error, if process was interrupted before. --- crc64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crc64.c b/crc64.c index 9bfcbac..13d9c73 100644 --- a/crc64.c +++ b/crc64.c @@ -289,7 +289,7 @@ static int process_file(const CHAR *const file_name, const int options) { if (!(options & OPT_IGNERR)) { - if (!(options & OPT_SILENT)) + if (!((options & OPT_SILENT) || g_aborted)) { FPUTS(T("I/O Error: Failed to read input data!\n"), stderr); }