summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2011-07-13 19:22:52 +0200
committerFlorian Ragwitz <rafl@debian.org>2011-07-13 19:22:52 +0200
commit7be5bd17122a532f2806c8321c9ea10a46b62c48 (patch)
tree1173319495c19ea9095135bbaeca7188d6de83b4 /pp_ctl.c
parent043647aa56b4b8e6d11b57c6bdb10a4007670155 (diff)
downloadperl-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 854c89d607..63efd9acf5 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -5003,6 +5003,8 @@ PP(pp_continue)
I32 gimme;
SV **newsp;
PMOP *newpm;
+
+ PERL_UNUSED_VAR(gimme);
cxix = dopoptowhen(cxstack_ix);
if (cxix < 0)