Fix linker error introduced by #33305
Steve Hay [Thu, 14 Feb 2008 10:09:33 +0000 (10:09 +0000)]
p4raw-id: //depot/perl@33306

op.c

diff --git a/op.c b/op.c
index ff39198..2c03377 100644 (file)
--- 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;