diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-12-16 21:30:34 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-12-16 21:30:34 +0000 |
commit | 7d49f6898e172f330a81e972c5944fc5726fcbf3 (patch) | |
tree | fb850177500bcbff74858b32114fe8482eb8f4f7 /sv.c | |
parent | aeecf691f59fe1423b7011655dd5de7d5fbd2192 (diff) | |
download | perl-7d49f6898e172f330a81e972c5944fc5726fcbf3.tar.gz |
s/Nullav/NULL/g
p4raw-id: //depot/perl@26380
Diffstat (limited to 'sv.c')
-rw-r--r-- | sv.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -520,7 +520,7 @@ do_clean_all(pTHX_ SV *sv) DEBUG_D((PerlIO_printf(Perl_debug_log, "Cleaning loops: SV at 0x%"UVxf"\n", PTR2UV(sv)) )); SvFLAGS(sv) |= SVf_BREAK; if (PL_comppad == (AV*)sv) { - PL_comppad = Nullav; + PL_comppad = NULL; PL_curpad = Null(SV**); } SvREFCNT_dec(sv); @@ -9555,7 +9555,7 @@ Perl_cx_dup(pTHX_ PERL_CONTEXT *cxs, I32 ix, I32 max, CLONE_PARAMS* param) : cv_dup(cx->blk_sub.cv,param)); ncx->blk_sub.argarray = (cx->blk_sub.hasargs ? av_dup_inc(cx->blk_sub.argarray, param) - : Nullav); + : NULL); ncx->blk_sub.savearray = av_dup_inc(cx->blk_sub.savearray, param); ncx->blk_sub.olddepth = cx->blk_sub.olddepth; ncx->blk_sub.hasargs = cx->blk_sub.hasargs; |