Skip to content

Commit

Permalink
Fix misleading indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
janisozaur committed Mar 23, 2017
1 parent 35c2d67 commit 3c7177c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniz_zip.c
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ mz_bool mz_zip_reader_init_file_v2(mz_zip_archive *pZip, const char *pFilename,
if ((!pZip) || (!pFilename) || ((archive_size) && (archive_size < MZ_ZIP_END_OF_CENTRAL_DIR_HEADER_SIZE)))
return mz_zip_set_error(pZip, MZ_ZIP_INVALID_PARAMETER);

pFile = MZ_FOPEN(pFilename, "rb");
pFile = MZ_FOPEN(pFilename, "rb");
if (!pFile)
return mz_zip_set_error(pZip, MZ_ZIP_FILE_OPEN_FAILED);

Expand Down

0 comments on commit 3c7177c

Please sign in to comment.