summaryrefslogtreecommitdiff
path: root/perl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-05-20 12:31:09 +0000
committerNicholas Clark <nick@ccl4.org>2006-05-20 12:31:09 +0000
commitc28fe1ecc160a002d731cdf38ff7215ad3cf2a19 (patch)
tree1e2f422e7ae0c64e5419784494fae185eb6e02eb /perl.c
parente22ae1e278fa878ce0da6700e97da49f0dacf636 (diff)
downloadperl-c28fe1ecc160a002d731cdf38ff7215ad3cf2a19.tar.gz
Rename cop_hints to cop_hints_hash
p4raw-id: //depot/perl@28252
Diffstat (limited to 'perl.c')
-rw-r--r--perl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl.c b/perl.c
index fc95e836db..7d71030106 100644
--- a/perl.c
+++ b/perl.c
@@ -1056,8 +1056,8 @@ perl_destruct(pTHXx)
if (!specialCopIO(PL_compiling.cop_io))
SvREFCNT_dec(PL_compiling.cop_io);
PL_compiling.cop_io = NULL;
- Perl_refcounted_he_free(aTHX_ PL_compiling.cop_hints);
- PL_compiling.cop_hints = NULL;
+ Perl_refcounted_he_free(aTHX_ PL_compiling.cop_hints_hash);
+ PL_compiling.cop_hints_hash = NULL;
CopFILE_free(&PL_compiling);
CopSTASH_free(&PL_compiling);