diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-12-01 12:12:50 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-12-01 12:12:50 +0000 |
commit | c2444246ea0b34317b8006ae1ad2160e01136013 (patch) | |
tree | 0a08ba1110ecbd04b6963b4593a6c93c72e3b20c /pp_hot.c | |
parent | db4a4bfef3d0670c19c876489f6c14478d1740b8 (diff) | |
download | perl-c2444246ea0b34317b8006ae1ad2160e01136013.tar.gz |
5.005_54, as released
p4raw-id: //depot/perl@2430
Diffstat (limited to 'pp_hot.c')
-rw-r--r-- | pp_hot.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |