mirror of
				https://github.com/eledio-devices/thirdparty-miniz.git
				synced 2025-10-31 00:32:38 +01:00 
			
		
		
		
	Fix function definitions
Fix function definitions tdefl_compressor_alloc(void) and tinfl_decompressor_alloc(void) to not accept any amount of arguments.
This commit is contained in:
		| @@ -724,7 +724,7 @@ int tinfl_decompress_mem_to_callback(const void *pIn_buf, size_t *pIn_buf_size, | ||||
| } | ||||
|  | ||||
| #ifndef MINIZ_NO_MALLOC | ||||
| tinfl_decompressor *tinfl_decompressor_alloc() | ||||
| tinfl_decompressor *tinfl_decompressor_alloc(void) | ||||
| { | ||||
|     tinfl_decompressor *pDecomp = (tinfl_decompressor *)MZ_MALLOC(sizeof(tinfl_decompressor)); | ||||
|     if (pDecomp) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user