diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2006-04-29 01:58:58 +0300 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-04-28 20:40:41 +0000 |
commit | 95b63a389ed86efed1a2fa9fd24931d56aac6070 (patch) | |
tree | aeb1bc30a3a260876b428893c2b1a0c94fc4d6bd /pp.c | |
parent | 899be1018553cb37b5cccbe4f65d169fd1c17028 (diff) | |
download | perl-95b63a389ed86efed1a2fa9fd24931d56aac6070.tar.gz |
reduce gcc -ansi -pedantic noise plus a suggestion
Message-ID: <44527402.8000506@gmail.com>
p4raw-id: //depot/perl@28008
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4139,7 +4139,7 @@ PP(pp_splice) } if (diff < 0) { /* shrinking the area */ - SV **tmparyval; + SV **tmparyval = NULL; if (newlen) { Newx(tmparyval, newlen, SV*); /* so remember insertion */ Copy(MARK, tmparyval, newlen, SV*); |