diff options
Diffstat (limited to 'universal.c')
-rw-r--r-- | universal.c | 4 |
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); |