diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2005-07-01 11:49:22 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2005-07-01 11:49:22 +0000 |
commit | b094c71d0e5fe8bc361ad2e51a050cd90827d764 (patch) | |
tree | 6620fea6aa7ed6bc4bc905e8c1fbc4b255172c12 /pp_ctl.c | |
parent | 9b50316d41e10da7079284a39efe42f777afb179 (diff) | |
download | perl-b094c71d0e5fe8bc361ad2e51a050cd90827d764.tar.gz |
silence a warning in Perl_sv_compile_2op
p4raw-id: //depot/perl@25035
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2768,7 +2768,7 @@ Perl_sv_compile_2op(pTHX_ SV *sv, OP** startop, const char *code, PAD** padp) dVAR; dSP; /* Make POPBLOCK work. */ PERL_CONTEXT *cx; SV **newsp; - I32 gimme; + I32 gimme = G_VOID; I32 optype; OP dummy; OP *rop; |