From c4f58c0edd458b0653382b90c6b8dfe26d4d112b Mon Sep 17 00:00:00 2001 From: Yevhen Kozirovskyi Date: Sun, 19 Jan 2025 18:04:39 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20sk1/compressor.c?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sk1/compressor.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sk1/compressor.c b/sk1/compressor.c index 6be2ab1..b431d21 100644 --- a/sk1/compressor.c +++ b/sk1/compressor.c @@ -283,7 +283,6 @@ int decompressFile(const char* input_file_name, const char* output_file_name) { struct MinHeapNode* current = root; unsigned char buffer; - int bitCount = 0; while (fread(&buffer, sizeof(unsigned char), 1, inputFile)) { for (int i = 7; i >= 0; i--) { int bit = (buffer >> i) & 1;