Fixed formatting

This commit is contained in:
Nathan Moinvaziri 2019-09-06 18:26:13 -07:00 committed by GitHub
parent 58dfe87d1d
commit a9f88d4b78
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -203,7 +203,7 @@ int32_t mz_stream_zlib_read(void *stream, void *buf, int32_t size)
break;
}
}
while (zlib->zstream.avail_out > 0 && (in_bytes > 0 || out_bytes > 0));
while ((zlib->zstream.avail_out > 0) && (in_bytes > 0 || out_bytes > 0));
if (zlib->error != 0)
{