diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-11-24 17:53:32 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-11-24 17:53:32 +0000 |
commit | 36b0d4988e189eb69539628bc132047fcdcbac92 (patch) | |
tree | 61f6514596ecd6a2c69f33bdcffb6359fbe6ec0b /sv.c | |
parent | d75d10443ddd5b4c155a931f7268d0d9f923304f (diff) | |
download | perl-36b0d4988e189eb69539628bc132047fcdcbac92.tar.gz |
Fix a typo introduced by 15d9236d3878cc50. (The wrong member of a union).
This would have caused no functional changes, just compiler warnings.
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11826,7 +11826,7 @@ S_sv_dup_common(pTHX_ const SV *const sstr, CLONE_PARAMS *const param) SvFLAGS(dstr) |= SVf_OOK; if (saux->xhv_name_count) { - HEK ** const sname = saux->xhv_name_u.xhvnameu_name; + HEK ** const sname = saux->xhv_name_u.xhvnameu_names; const I32 count = saux->xhv_name_count < 0 ? -saux->xhv_name_count |