diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-06-25 20:29:22 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-06-25 20:29:22 -0700 |
commit | f0f4507d4179ced28b80e910714da95c6d9b1bd6 (patch) | |
tree | 229fcc383ee4898d127bc046914026e0e1bfb107 /pp_sys.c | |
parent | 21247d859ff322e3b59423bddc843f547a93e72f (diff) | |
download | perl-f0f4507d4179ced28b80e910714da95c6d9b1bd6.tar.gz |
pp_sys.c: Squelch compiler warning
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1398,7 +1398,7 @@ PP(pp_leavewrite) * stack. There's probably a better place to be handling this (probably * by avoiding pushing it in the first place!) but I don't quite know * where to look. -doy */ - POPs; + (void)POPs; if (!io || !(ofp = IoOFP(io))) goto forget_top; |