diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-05-06 18:38:45 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-05-06 18:38:45 +0000 |
commit | b1135e3d40203a90e9ea126ad842db6295e76709 (patch) | |
tree | 0e0f6bbc5cf693bdc90065309e601e3da4f4a8ae /intrpvar.h | |
parent | 605986241de3d828e4de2beec37dc9ecc5aaa260 (diff) | |
download | perl-b1135e3d40203a90e9ea126ad842db6295e76709.tar.gz |
Change types of PL_he_arenaroot and PL_pte_arenaroot to avoid casting.
p4raw-id: //depot/perl@24408
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/intrpvar.h b/intrpvar.h index 2125acf180..9688541a14 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -437,8 +437,8 @@ PERLVAR(Ixpvhv_arenaroot,XPVHV*) /* list of allocated xpvhv areas */ PERLVAR(Ixpvmg_arenaroot,XPVMG*) /* list of allocated xpvmg areas */ PERLVAR(Ixpvlv_arenaroot,XPVLV*) /* list of allocated xpvlv areas */ PERLVAR(Ixpvbm_arenaroot,XPVBM*) /* list of allocated xpvbm areas */ -PERLVAR(Ihe_arenaroot, XPV*) /* list of allocated he areas */ -PERLVAR(Ipte_arenaroot, XPV*) /* list of allocated he areas */ +PERLVAR(Ihe_arenaroot, HE *) /* list of allocated he areas */ +PERLVAR(Ipte_arenaroot, struct ptr_tbl_ent *) /* list of allocated he areas */ /* 5.6.0 stopped here */ |