summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-07-12 08:17:47 +0000
committerSteve Hay <SteveHay@planit.com>2005-07-12 08:17:47 +0000
commit9f653bb54868b8547466924d4ce483acb8987efb (patch)
treec335772e50d2eb91b883f81f1636d76603814bb2 /sv.c
parentc5008215525f2f0a2a10a4c6a997f4cccfb6d09b (diff)
downloadperl-9f653bb54868b8547466924d4ce483acb8987efb.tar.gz
Change New*() to Newx*() in various comments and documentation
p4raw-id: //depot/perl@25116
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 0687df1900..3d17b1d706 100644
--- a/sv.c
+++ b/sv.c
@@ -4577,7 +4577,7 @@ Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags)
}
SvFAKE_off(sv);
SvREADONLY_off(sv);
- /* This SV doesn't own the buffer, so need to New() a new one: */
+ /* This SV doesn't own the buffer, so need to Newx() a new one: */
SvPV_set(sv, (char*)0);
SvLEN_set(sv, 0);
if (flags & SV_COW_DROP_PV) {