summaryrefslogtreecommitdiff
path: root/doio.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2006-02-07 10:36:56 -0600
committerSteve Peters <steve@fisharerojo.org>2006-02-08 03:23:27 +0000
commit294a48e93682c45d53fd3e8adb7bbdd7068cbb1d (patch)
treea6878848cea71feb8b3cc4a56a0c3ba4ea7238b0 /doio.c
parent78f158d1419ac33753582a090b1b89196bbfe093 (diff)
downloadperl-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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/doio.c b/doio.c
index 8d55d3f0cf..dfd48d2d8b 100644
--- a/doio.c
+++ b/doio.c
@@ -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)