Skip to content

Commit 831773b

Browse files
authored
Merge pull request google#180 from enh-google/master
Fix the i686-linux-android build.
2 parents 6673e39 + 60503d1 commit 831773b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zopfli/cache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ void ZopfliInitCache(size_t blocksize, ZopfliLongestMatchCache* lmc) {
3434
if(lmc->sublen == NULL) {
3535
fprintf(stderr,
3636
"Error: Out of memory. Tried allocating %lu bytes of memory.\n",
37-
ZOPFLI_CACHE_LENGTH * 3 * blocksize);
37+
(unsigned long)ZOPFLI_CACHE_LENGTH * 3 * blocksize);
3838
exit (EXIT_FAILURE);
3939
}
4040

0 commit comments

Comments
 (0)