On Sun Feb 02 14:30:34 2014, PMQS wrote:
Show quoted text> Did you forget to enclose the patch?
>
> Paul
Apparently I did :(
Hopefully this will have an attached file.
diff --git a/Zlib.xs b/Zlib.xs
index 4b2573a..e1f2a1f 100644
--- a/Zlib.xs
+++ b/Zlib.xs
@@ -1450,7 +1450,7 @@ Perl_sv_dump(output); */
if (RETVAL == Z_NEED_DICT && s->dictionary) {
STRLEN dlen;
- const Bytef* b = SvPV(s->dictionary, dlen) ;
+ const Bytef* b = (Bytef*) SvPV(s->dictionary, dlen) ;
s->dict_adler = s->stream.adler ;
RETVAL = inflateSetDictionary(&(s->stream),
b, dlen);