From: Nicholas Clark <nick@ccl4.org>
Date: Sun, 5 Mar 2006 21:21:10 +0000 (+0000)
Subject: Change 27380 (HEK into the IV union failed to convert the code in the
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=274ac62a3e605d66baf0a73d4dde20b3a2ea7120;p=p5sagit%2Fp5-mst-13.2.git

Change 27380 (HEK into the IV union failed to convert the code in the
non-gcc-debugging ifdef. Whoops. Very lax of me)

p4raw-id: //depot/perl@27383
---

diff --git a/gv.h b/gv.h
index f48cb15..e0cfeaa 100644
--- a/gv.h
+++ b/gv.h
@@ -53,7 +53,7 @@ struct gp {
 #  define GvGP(gv)	((gv)->sv_u.svu_gp)
 #  define GvFLAGS(gv)	(GvXPVGV(gv)->xpv_cur)
 #  define GvSTASH(gv)	(GvXPVGV(gv)->xnv_u.xgv_stash)
-#  define GvNAME_HEK(gv)	(GvXPVGV(gv)->xgv_namehek)
+#  define GvNAME_HEK(gv)	(GvXPVGV(gv)->xiv_u.xivu_namehek)
 #endif
 
 #define GvNAME_get(gv)		(GvNAME_HEK(gv) ? HEK_KEY(GvNAME_HEK(gv)) : 0)