diff options
author | Florian Ragwitz <rafl@debian.org> | 2011-07-13 19:22:52 +0200 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2011-07-13 19:22:52 +0200 |
commit | 7be5bd17122a532f2806c8321c9ea10a46b62c48 (patch) | |
tree | 1173319495c19ea9095135bbaeca7188d6de83b4 /pp_ctl.c | |
parent | 043647aa56b4b8e6d11b57c6bdb10a4007670155 (diff) | |
download | perl-7be5bd17122a532f2806c8321c9ea10a46b62c48.tar.gz |
Fix a compiler warning
gimme is being set by POPBLOCK, but otherwise unused. PERL_UNUSED_VAR stops the
warning gcc generates for that.
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5003,6 +5003,8 @@ PP(pp_continue) I32 gimme; SV **newsp; PMOP *newpm; + + PERL_UNUSED_VAR(gimme); cxix = dopoptowhen(cxstack_ix); if (cxix < 0) |