diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-23 11:02:42 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-23 11:02:42 +0000 |
commit | 6300418df733fa6a39202abfea4908f73899f1ad (patch) | |
tree | 0ce0469ba13e6c558fa0e664be772b83850c5d69 /pp_sys.c | |
parent | 17fbfdf6c6f5ee46c01833862a16cddc094c4bd5 (diff) | |
download | perl-6300418df733fa6a39202abfea4908f73899f1ad.tar.gz |
Silence bcc32 compiler warnings following change 24945
("Possible use of '%s' before definition")
p4raw-id: //depot/perl@24953
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1318,8 +1318,8 @@ PP(pp_leavewrite) register IO * const io = GvIOp(gv); PerlIO * const ofp = IoOFP(io); PerlIO *fp; - SV **newsp; - I32 gimme; + SV **newsp = Nullsv; + I32 gimme = 0; register PERL_CONTEXT *cx; PERL_UNUSED_VAR(newsp); PERL_UNUSED_VAR(gimme); |