diff options
author | Steve Hay <SteveHay@planit.com> | 2008-02-14 10:09:33 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2008-02-14 10:09:33 +0000 |
commit | c91c3a7516528643b435e162ebf2189b64c15290 (patch) | |
tree | baeb4ad15cfd488447c38b91cce21cf61c0c927a /op.c | |
parent | 86f9315f71b1082772a0bd0036b997ad8e70748a (diff) | |
download | perl-c91c3a7516528643b435e162ebf2189b64c15290.tar.gz |
Fix linker error introduced by #33305
p4raw-id: //depot/perl@33306
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |