diff options
Diffstat (limited to 'crc32.c')
-rw-r--r-- | crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1086,7 +1086,7 @@ uLong ZEXPORT crc32_combine(crc1, crc2, len2) | |||
1086 | uLong crc2; | 1086 | uLong crc2; |
1087 | z_off_t len2; | 1087 | z_off_t len2; |
1088 | { | 1088 | { |
1089 | return crc32_combine64(crc1, crc2, len2); | 1089 | return crc32_combine64(crc1, crc2, (z_off64_t)len2); |
1090 | } | 1090 | } |
1091 | 1091 | ||
1092 | /* ========================================================================= */ | 1092 | /* ========================================================================= */ |
@@ -1103,7 +1103,7 @@ uLong ZEXPORT crc32_combine_gen64(len2) | |||
1103 | uLong ZEXPORT crc32_combine_gen(len2) | 1103 | uLong ZEXPORT crc32_combine_gen(len2) |
1104 | z_off_t len2; | 1104 | z_off_t len2; |
1105 | { | 1105 | { |
1106 | return crc32_combine_gen64(len2); | 1106 | return crc32_combine_gen64((z_off64_t)len2); |
1107 | } | 1107 | } |
1108 | 1108 | ||
1109 | /* ========================================================================= */ | 1109 | /* ========================================================================= */ |