From: Steve Hay Date: Thu, 14 Feb 2008 10:09:33 +0000 (+0000) Subject: Fix linker error introduced by #33305 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c91c3a7516528643b435e162ebf2189b64c15290;p=p5sagit%2Fp5-mst-13.2.git Fix linker error introduced by #33305 p4raw-id: //depot/perl@33306 --- diff --git a/op.c b/op.c index ff39198..2c03377 100644 --- a/op.c +++ b/op.c @@ -1075,7 +1075,7 @@ Perl_scalarvoid(pTHX_ OP *o) no_bareword_allowed(o); else { if (ckWARN(WARN_VOID)) { - SV* msv = newSVpvf("a constant (%"SVf")", sv); + SV* msv = Perl_newSVpvf(aTHX_ "a constant (%"SVf")", sv); useless = SvPV_nolen(msv); if (o->op_private & OPpCONST_ARYBASE) useless = NULL;