summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2004-03-05 00:09:23 +0000
committerDave Mitchell <davem@fdisolutions.com>2004-03-05 00:09:23 +0000
commitb988aa42542aa1211e2de8ba6ea52415dd30488b (patch)
tree50ef2e81a5c5c087b630699f222194fa135f5b67 /pp_ctl.c
parent42b1db35bd6485f66426fa704408dc673fb999f1 (diff)
downloadperl-b988aa42542aa1211e2de8ba6ea52415dd30488b.tar.gz
silence some compiler warnings
p4raw-id: //depot/perl@22440
Diffstat (limited to 'pp_ctl.c')
-rw-r--r--pp_ctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index d426005692..fa2c87ceae 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -948,7 +948,7 @@ PP(pp_mapwhile)
* (we use undef here). And so we certainly don't want to do mortal
* copies of meaningless values. */
while (items-- > 0) {
- POPs;
+ (void)POPs;
*dst-- = &PL_sv_undef;
}
}