summaryrefslogtreecommitdiff
path: root/op.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-12-16 21:54:13 +0000
committerNicholas Clark <nick@ccl4.org>2005-12-16 21:54:13 +0000
commit5c284bb074748eab0ba4ff8e53eb1eeeb0f7a962 (patch)
tree4133fe3b01abe921da65a57c8e96bef0955a88cb /op.h
parent7d49f6898e172f330a81e972c5944fc5726fcbf3 (diff)
downloadperl-5c284bb074748eab0ba4ff8e53eb1eeeb0f7a962.tar.gz
s/Nullhv/NULL/g;
# Although I see that Robin is proposing to add some :-) p4raw-id: //depot/perl@26381
Diffstat (limited to 'op.h')
-rw-r--r--op.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op.h b/op.h
index 5fbce838ea..caea112038 100644
--- a/op.h
+++ b/op.h
@@ -334,7 +334,7 @@ struct pmop {
# define PmopSTASHPV(o) ((o)->op_pmstashpv)
# define PmopSTASHPV_set(o,pv) (PmopSTASHPV(o) = savesharedpv(pv))
# define PmopSTASH(o) (PmopSTASHPV(o) \
- ? gv_stashpv(PmopSTASHPV(o),GV_ADD) : Nullhv)
+ ? gv_stashpv(PmopSTASHPV(o),GV_ADD) : NULL)
# define PmopSTASH_set(o,hv) PmopSTASHPV_set(o, ((hv) ? HvNAME_get(hv) : Nullch))
# define PmopSTASH_free(o) PerlMemShared_free(PmopSTASHPV(o))