Skip to content

Commit

Permalink
Merge pull request #140 from dandrader/fixLfsCheck
Browse files Browse the repository at this point in the history
Fix LFS check
  • Loading branch information
uroni authored Oct 6, 2019
2 parents 0238ce2 + 334e0d6 commit 107def8
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 @@ -97,7 +97,7 @@ static FILE *mz_freopen(const char *pPath, const char *pMode, FILE *pStream)
#define MZ_FFLUSH fflush
#define MZ_FREOPEN(f, m, s) freopen(f, m, s)
#define MZ_DELETE_FILE remove
#elif defined(__GNUC__) && defined(_LARGEFILE64_SOURCE)
#elif defined(__USE_LARGEFILE64) // gcc, clang
#ifndef MINIZ_NO_TIME
#include <utime.h>
#endif
Expand Down

0 comments on commit 107def8

Please sign in to comment.