diff options
author | Andy Lester <andy@petdance.com> | 2006-02-07 10:36:56 -0600 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2006-02-08 03:23:27 +0000 |
commit | 294a48e93682c45d53fd3e8adb7bbdd7068cbb1d (patch) | |
tree | a6878848cea71feb8b3cc4a56a0c3ba4ea7238b0 /doio.c | |
parent | 78f158d1419ac33753582a090b1b89196bbfe093 (diff) | |
download | perl-294a48e93682c45d53fd3e8adb7bbdd7068cbb1d.tar.gz |
Handle unused args
Message-ID: <20060207223656.GA5177@petdance.com>
p4raw-id: //depot/perl@27129
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1974,7 +1974,8 @@ Perl_do_ipcget(pTHX_ I32 optype, SV **mark, SV **sp) const key_t key = (key_t)SvNVx(*++mark); const I32 n = (optype == OP_MSGGET) ? 0 : SvIVx(*++mark); const I32 flags = SvIVx(*++mark); - (void)sp; + + PERL_UNUSED_ARG(sp); SETERRNO(0,0); switch (optype) |