summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorKarl Williamson <public@khwilliamson.com>2011-07-03 18:37:27 -0600
committerKarl Williamson <public@khwilliamson.com>2011-07-03 18:41:59 -0600
commit43056537740a5320c6e631c86f517802d707b611 (patch)
treeb0f39ea4fcd06067ac23c0164f1dd792b47ebe75 /sv.c
parent1477e5aba4b90c0ec344f8ba6ed52e5deb26e835 (diff)
downloadperl-43056537740a5320c6e631c86f517802d707b611.tar.gz
sv.c: hv_dup should be sv_dup
Spotted by George Greer.
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 fffa6e99ed..5e9bf25f28 100644
--- a/sv.c
+++ b/sv.c
@@ -13258,7 +13258,7 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_utf8_xidstart = sv_dup_inc(proto_perl->Iutf8_xidstart, param);
PL_utf8_idcont = sv_dup_inc(proto_perl->Iutf8_idcont, param);
PL_utf8_xidcont = sv_dup_inc(proto_perl->Iutf8_xidcont, param);
- PL_utf8_foldable = hv_dup_inc(proto_perl->Iutf8_foldable, param);
+ PL_utf8_foldable = sv_dup_inc(proto_perl->Iutf8_foldable, param);
if (proto_perl->Ipsig_pend) {