X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=pp_ctl.c;h=9514168269682c69422a9b7a11271ff947f8def3;hb=0002dd408e3c774a6362509144c535985989fca0;hp=80cd803c83d501f347ab5fef0e1173bb01690a7a;hpb=bbed91b518d7e52e6a0a7b19d9b2fe8fd8ca6d17;p=p5sagit%2Fp5-mst-13.2.git diff --git a/pp_ctl.c b/pp_ctl.c index 80cd803..9514168 100644 --- a/pp_ctl.c +++ b/pp_ctl.c @@ -2848,7 +2848,7 @@ PP(pp_require) save the gv to manage the lifespan of the pipe, but this didn't help. XXX */ filter_child_proc = (GV *)arg; - SvREFCNT_inc(filter_child_proc); + (void)SvREFCNT_inc(filter_child_proc); } else { if (IoOFP(io) && IoOFP(io) != IoIFP(io)) { @@ -2866,11 +2866,11 @@ PP(pp_require) if (SvROK(arg) && SvTYPE(SvRV(arg)) == SVt_PVCV) { filter_sub = arg; - SvREFCNT_inc(filter_sub); + (void)SvREFCNT_inc(filter_sub); if (i < count) { filter_state = SP[i]; - SvREFCNT_inc(filter_state); + (void)SvREFCNT_inc(filter_state); } if (tryrsfp == 0) {