summaryrefslogtreecommitdiff
path: root/universal.c
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 /universal.c
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 'universal.c')
-rw-r--r--universal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/universal.c b/universal.c
index 10dddb5efe..824a4d5c66 100644
--- a/universal.c
+++ b/universal.c
@@ -38,7 +38,7 @@ S_isa_lookup(pTHX_ HV *stash, const char *name, HV* name_stash,
AV* av;
GV* gv;
GV** gvp;
- HV* hv = Nullhv;
+ HV* hv = NULL;
SV* subgen = Nullsv;
const char *hvname;
@@ -141,7 +141,7 @@ bool
Perl_sv_derived_from(pTHX_ SV *sv, const char *name)
{
const char *type = Nullch;
- HV *stash = Nullhv;
+ HV *stash = NULL;
HV *name_stash;
SvGETMAGIC(sv);