Обновить sk1/compressor.c

This commit is contained in:
Yevhen Kozirovskyi 2025-01-19 18:04:39 +00:00
parent 2e67cc1c44
commit c4f58c0edd

View File

@ -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;