summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorSteven Schubiger <schubiger@cpan.org>2006-02-02 17:02:41 +0100
committerNicholas Clark <nick@ccl4.org>2006-02-03 13:21:46 +0000
commit601f18338612507d7579747105124d8ed063211e (patch)
tree325daf6ac91ae86986ed1c746485642e165a44e7 /dump.c
parent22c96fc102ce8ee52778a2d8a7fced27b492c1ee (diff)
downloadperl-601f18338612507d7579747105124d8ed063211e.tar.gz
s/Nullcv/NULL/g
Message-ID: <20060202150241.GF12591@accognoscere.homeunix.org> Date: Thu, 2 Feb 2006 16:02:41 +0100 p4raw-id: //depot/perl@27060
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dump.c b/dump.c
index 088e86077f..0612a9cb1a 100644
--- a/dump.c
+++ b/dump.c
@@ -1695,7 +1695,7 @@ S_deb_curcv(pTHX_ I32 ix)
else if (ix == 0 && PL_curstackinfo->si_type == PERLSI_MAIN)
return PL_main_cv;
else if (ix <= 0)
- return Nullcv;
+ return NULL;
else
return deb_curcv(ix - 1);
}