summaryrefslogtreecommitdiff
path: root/cpan/Compress-Raw-Bzip2/Bzip2.xs
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-01-17 18:06:41 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-01-17 18:06:41 +0000
commit742efbc0836f30c015626fc3f34e7f8b4c1c8e5a (patch)
tree0b3abbba08eca37f3f6cc2ef2d1fb498f4266829 /cpan/Compress-Raw-Bzip2/Bzip2.xs
parent3f55f81c7becb57f0b44ef0d2f092208c8b5c2f5 (diff)
downloadperl-742efbc0836f30c015626fc3f34e7f8b4c1c8e5a.tar.gz
Update Compress-Raw-Bzip2 to CPAN version 2.084
[DELTA] 2.084 5 January 2019 * No Changes 2.083 30 December 2018 * No Changes
Diffstat (limited to 'cpan/Compress-Raw-Bzip2/Bzip2.xs')
-rw-r--r--cpan/Compress-Raw-Bzip2/Bzip2.xs4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpan/Compress-Raw-Bzip2/Bzip2.xs b/cpan/Compress-Raw-Bzip2/Bzip2.xs
index b4e9ab5549..c1f1c6b76c 100644
--- a/cpan/Compress-Raw-Bzip2/Bzip2.xs
+++ b/cpan/Compress-Raw-Bzip2/Bzip2.xs
@@ -485,7 +485,7 @@ bzdeflate (s, buf, output)
croak("Wide character in " COMPRESS_CLASS "::bzdeflate input parameter");
#endif
s->stream.next_in = (char*)SvPV_nomg(buf, origlen) ;
- s->stream.avail_in = origlen;
+ s->stream.avail_in = (unsigned int) origlen;
/* and retrieve the output buffer */
output = deRef_l(output, "deflate") ;
@@ -735,7 +735,7 @@ bzinflate (s, buf, output)
/* initialise the input buffer */
s->stream.next_in = (char*)SvPV_nomg(buf, origlen) ;
- s->stream.avail_in = origlen;
+ s->stream.avail_in = (unsigned int) origlen;
/* and retrieve the output buffer */
output = deRef_l(output, "bzinflate") ;