Skip to content

Commit

Permalink
Fixed formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed May 8, 2021
1 parent 8847f22 commit 8622644
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions mz_compat.c
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ static int32_t mz_stream_ioapi_error(void *stream);
static void *mz_stream_ioapi_create(void **stream);
static void mz_stream_ioapi_delete(void **stream);


/***************************************************************************/

static mz_stream_vtbl mz_stream_ioapi_vtbl = {
Expand Down Expand Up @@ -678,7 +677,6 @@ unzFile unzOpen2(const char *path, zlib_filefunc_def *pzlib_filefunc_def) {
unzFile unz = NULL;
void *stream = NULL;


if (pzlib_filefunc_def) {
if (pzlib_filefunc_def->zopen_file != NULL) {
if (mz_stream_ioapi_create(&stream) == NULL)
Expand Down Expand Up @@ -713,7 +711,6 @@ unzFile unzOpen2_64(const void *path, zlib_filefunc64_def *pzlib_filefunc_def) {
unzFile unz = NULL;
void *stream = NULL;


if (pzlib_filefunc_def) {
if (pzlib_filefunc_def->zopen64_file != NULL) {
if (mz_stream_ioapi_create(&stream) == NULL)
Expand Down

0 comments on commit 8622644

Please sign in to comment.