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_ctl.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_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2048,7 +2048,7 @@ PP(pp_last) register PERL_CONTEXT *cx; I32 pop2 = 0; I32 gimme; - I32 optype; + I32 optype = 0; OP *nextop; SV **newsp; PMOP *newpm; |