Skip to content

Commit

Permalink
Merge pull request #180 from enh-google/master
Browse files Browse the repository at this point in the history
Fix the i686-linux-android build.
  • Loading branch information
lvandeve authored Jun 14, 2021
2 parents 6673e39 + 60503d1 commit 831773b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/zopfli/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void ZopfliInitCache(size_t blocksize, ZopfliLongestMatchCache* lmc) {
if(lmc->sublen == NULL) {
fprintf(stderr,
"Error: Out of memory. Tried allocating %lu bytes of memory.\n",
ZOPFLI_CACHE_LENGTH * 3 * blocksize);
(unsigned long)ZOPFLI_CACHE_LENGTH * 3 * blocksize);
exit (EXIT_FAILURE);
}

Expand Down

0 comments on commit 831773b

Please sign in to comment.