Обновить sk1/compressor.c
This commit is contained in:
		
							parent
							
								
									2e67cc1c44
								
							
						
					
					
						commit
						c4f58c0edd
					
				@ -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;
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user