summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorGisle Aas <gisle@activestate.com>2006-01-04 16:15:34 +0000
committerGisle Aas <gisle@activestate.com>2006-01-04 16:15:34 +0000
commit89529cee496f815eec2d49f2510449af5063ddd8 (patch)
treee06748af374c318d12651d338e657323af4a0ce7 /sv.c
parent91d456aef184ffc6173bca456cc087b98f0e0831 (diff)
downloadperl-89529cee496f815eec2d49f2510449af5063ddd8.tar.gz
Make the new STR_WITH_LEN() affected compile under -Dusethreads.
Can't use STR_WITH_LEN() as argument to a macro :-( p4raw-id: //depot/perl@26649
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sv.c b/sv.c
index 6f296d71ce..e6690c11d4 100644
--- a/sv.c
+++ b/sv.c
@@ -11175,7 +11175,7 @@ S_varname(pTHX_ GV *gv, const char gvtype, PADOFFSET targ,
Perl_sv_catpvf(aTHX_ name, "[%"IVdf"]", (IV)aindex);
}
else if (subscript_type == FUV_SUBSCRIPT_WITHIN)
- sv_insert(name, 0, 0, STR_WITH_LEN("within "));
+ Perl_sv_insert(aTHX_ name, 0, 0, STR_WITH_LEN("within "));
return name;
}