Rerun clang-format

This commit is contained in:
Martin
2017-01-03 01:30:38 +01:00
parent 4fa873b0f8
commit 4c36ab0230
7 changed files with 244 additions and 251 deletions

View File

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