diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-03-05 00:09:23 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-03-05 00:09:23 +0000 |
commit | b988aa42542aa1211e2de8ba6ea52415dd30488b (patch) | |
tree | 50ef2e81a5c5c087b630699f222194fa135f5b67 /pp_ctl.c | |
parent | 42b1db35bd6485f66426fa704408dc673fb999f1 (diff) | |
download | perl-b988aa42542aa1211e2de8ba6ea52415dd30488b.tar.gz |
silence some compiler warnings
p4raw-id: //depot/perl@22440
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } } |