summaryrefslogtreecommitdiff
path: root/universal.c
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2003-02-10 18:11:35 +0000
committerArtur Bergman <sky@nanisky.com>2003-02-10 18:11:35 +0000
commit9be22fdc5e6401d34a392a30fcc1c5fb0eb6723f (patch)
tree1df0f55fef4d5ee2d25efed90fa589c2ca0b8177 /universal.c
parent2ed3a706e76b03c0f51930be7d3e2717325b819a (diff)
downloadperl-9be22fdc5e6401d34a392a30fcc1c5fb0eb6723f.tar.gz
Compile under threads and MacOSX. For some reason newSVpvf
was not exapnded. p4raw-id: //depot/perl@18686
Diffstat (limited to 'universal.c')
-rw-r--r--universal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/universal.c b/universal.c
index a198fe6c8e..f7b869135b 100644
--- a/universal.c
+++ b/universal.c
@@ -361,7 +361,7 @@ XS(XS_version_new)
if (items == 3 )
{
char *vs = savepvn(SvPVX(ST(2)),SvCUR(ST(2)));
- version = newSVpvf("v%s",vs);
+ version = Perl_newSVpvf(aTHX_ "v%s",vs);
}
PUSHs(new_version(version));