diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-30 23:12:30 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-05-30 23:12:30 +0000 |
commit | b7953727b0415d171133ea7caa7aca5672129f99 (patch) | |
tree | 04eeafc77fc5ed0662e0e330e4960ab6b6402acc /perl.c | |
parent | 659ca9ea8f57ee52a52802839584b7208ad161b7 (diff) | |
download | perl-b7953727b0415d171133ea7caa7aca5672129f99.tar.gz |
More -Wall silencing from Michael Schwern and Jarkko Hietaniemi.
p4raw-id: //depot/perl@10335
Diffstat (limited to 'perl.c')
-rw-r--r-- | perl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1681,7 +1681,7 @@ Perl_call_sv(pTHX_ SV *sv, I32 flags) LOGOP myop; /* fake syntax tree node */ UNOP method_op; I32 oldmark; - I32 retval; + I32 retval = 0; I32 oldscope; bool oldcatch = CATCH_GET; int ret; @@ -1869,7 +1869,7 @@ Perl_eval_sv(pTHX_ SV *sv, I32 flags) dSP; UNOP myop; /* fake syntax tree node */ I32 oldmark = SP - PL_stack_base; - I32 retval; + I32 retval = 0; I32 oldscope; int ret; OP* oldop = PL_op; |