aboutsummaryrefslogtreecommitdiff
path: root/crc32.c
diff options
context:
space:
mode:
Diffstat (limited to 'crc32.c')
-rw-r--r--crc32.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crc32.c b/crc32.c
index 6191340..561d0fe 100644
--- a/crc32.c
+++ b/crc32.c
@@ -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)
1103uLong ZEXPORT crc32_combine_gen(len2) 1103uLong 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/* ========================================================================= */