summaryrefslogtreecommitdiff
path: root/ext/Data
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-12-16 21:30:34 +0000
committerNicholas Clark <nick@ccl4.org>2005-12-16 21:30:34 +0000
commit7d49f6898e172f330a81e972c5944fc5726fcbf3 (patch)
treefb850177500bcbff74858b32114fe8482eb8f4f7 /ext/Data
parentaeecf691f59fe1423b7011655dd5de7d5fbd2192 (diff)
downloadperl-7d49f6898e172f330a81e972c5944fc5726fcbf3.tar.gz
s/Nullav/NULL/g
p4raw-id: //depot/perl@26380
Diffstat (limited to 'ext/Data')
-rw-r--r--ext/Data/Dumper/Dumper.xs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/Data/Dumper/Dumper.xs b/ext/Data/Dumper/Dumper.xs
index e6940a3f0f..109d249145 100644
--- a/ext/Data/Dumper/Dumper.xs
+++ b/ext/Data/Dumper/Dumper.xs
@@ -252,7 +252,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv,
SV **svp;
SV *sv, *ipad, *ival;
SV *blesspad = Nullsv;
- AV *seenentry = Nullav;
+ AV *seenentry = NULL;
char *iname;
STRLEN inamelen, idlen = 0;
U32 realtype;
@@ -532,7 +532,7 @@ DD_dump(pTHX_ SV *val, const char *name, STRLEN namelen, SV *retval, HV *seenhv,
char *key;
I32 klen;
SV *hval;
- AV *keys = Nullav;
+ AV *keys = NULL;
iname = newSVpvn(name, namelen);
if (name[0] == '%') {
@@ -965,7 +965,7 @@ Data_Dumper_Dumpxs(href, ...)
(void)sv_2mortal(href);
}
- todumpav = namesav = Nullav;
+ todumpav = namesav = NULL;
seenhv = Nullhv;
val = pad = xpad = apad = sep = pair = varname
= freezer = toaster = bless = sortkeys = &PL_sv_undef;