summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-12-01 12:12:50 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-12-01 12:12:50 +0000
commitc2444246ea0b34317b8006ae1ad2160e01136013 (patch)
tree0a08ba1110ecbd04b6963b4593a6c93c72e3b20c /pp_hot.c
parentdb4a4bfef3d0670c19c876489f6c14478d1740b8 (diff)
downloadperl-c2444246ea0b34317b8006ae1ad2160e01136013.tar.gz
5.005_54, as released
p4raw-id: //depot/perl@2430
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pp_hot.c b/pp_hot.c
index a3e893f17f..329af8bd88 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -462,7 +462,7 @@ PP(pp_rv2av)
if (ckWARN(WARN_UNINITIALIZED))
warner(WARN_UNINITIALIZED, PL_warn_uninit);
if (GIMME == G_ARRAY) {
- POPs;
+ (void)POPs;
RETURN;
}
RETSETUNDEF;
@@ -486,7 +486,7 @@ PP(pp_rv2av)
if (GIMME == G_ARRAY) {
I32 maxarg = AvFILL(av) + 1;
- POPs; /* XXXX May be optimized away? */
+ (void)POPs; /* XXXX May be optimized away? */
EXTEND(SP, maxarg);
if (SvRMAGICAL(av)) {
U32 i;