mirror of
				https://github.com/eledio-devices/thirdparty-miniz.git
				synced 2025-10-31 08:42:39 +01:00 
			
		
		
		
	Rerun clang-format
This commit is contained in:
		
							
								
								
									
										4
									
								
								miniz.c
									
									
									
									
									
								
							
							
						
						
									
										4
									
								
								miniz.c
									
									
									
									
									
								
							| @@ -320,7 +320,7 @@ int mz_compress2(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char | ||||
|     stream.next_in = pSource; | ||||
|     stream.avail_in = (mz_uint32)source_len; | ||||
|     stream.next_out = pDest; | ||||
|     stream.avail_out = (mz_uint32)*pDest_len; | ||||
|     stream.avail_out = (mz_uint32) * pDest_len; | ||||
|  | ||||
|     status = mz_deflateInit(&stream, level); | ||||
|     if (status != MZ_OK) | ||||
| @@ -534,7 +534,7 @@ int mz_uncompress(unsigned char *pDest, mz_ulong *pDest_len, const unsigned char | ||||
|     stream.next_in = pSource; | ||||
|     stream.avail_in = (mz_uint32)source_len; | ||||
|     stream.next_out = pDest; | ||||
|     stream.avail_out = (mz_uint32)*pDest_len; | ||||
|     stream.avail_out = (mz_uint32) * pDest_len; | ||||
|  | ||||
|     status = mz_inflateInit(&stream); | ||||
|     if (status != MZ_OK) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user