diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-20 09:26:15 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2006-02-20 09:26:15 +0000 |
commit | 4608196e45589eea5792cff92b551109899ddb06 (patch) | |
tree | 584bcc5d3498ebc1d76f0afe65ce7c97e95768b5 /deb.c | |
parent | bcb11275f9e8e4324ef33449c82bea92e44f6386 (diff) | |
download | perl-4608196e45589eea5792cff92b551109899ddb06.tar.gz |
More NullXXX macro removal from Andy Lester
p4raw-id: //depot/perl@27238
Diffstat (limited to 'deb.c')
-rw-r--r-- | deb.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -225,11 +225,9 @@ Perl_deb_stack_all(pTHX) */ I32 i, stack_min, stack_max, mark_min, mark_max; - const PERL_CONTEXT *cx_n; + const PERL_CONTEXT *cx_n = NULL; const PERL_SI *si_n; - cx_n = Null(PERL_CONTEXT*); - /* there's a separate stack per SI, so only search * this one */ @@ -257,7 +255,7 @@ Perl_deb_stack_all(pTHX) si_n = si; i = ix; - cx_n = Null(PERL_CONTEXT*); + cx_n = NULL; for (;;) { i++; if (i > si_n->si_cxix) { |