aboutsummaryrefslogtreecommitdiff
path: root/sys/netpfil
diff options
context:
space:
mode:
authorLuigi Rizzo <luigi@FreeBSD.org>2016-01-26 22:45:45 +0000
committerLuigi Rizzo <luigi@FreeBSD.org>2016-01-26 22:45:45 +0000
commite72cd9a70dbfb655ee2c3315738f252139966000 (patch)
tree40e00d4a5d5b7e01de6becd45d128b8b7f231c6c /sys/netpfil
parent4d85bfeb07eb0d6bc40b66a66dc5a60febf96fe2 (diff)
downloadsrc-e72cd9a70dbfb655ee2c3315738f252139966000.tar.gz
src-e72cd9a70dbfb655ee2c3315738f252139966000.zip
prevent warning for unused argument
Notes
Notes: svn path=/head/; revision=294856
Diffstat (limited to 'sys/netpfil')
-rw-r--r--sys/netpfil/ipfw/dn_sched_fifo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netpfil/ipfw/dn_sched_fifo.c b/sys/netpfil/ipfw/dn_sched_fifo.c
index e2aa60826eb8..e3e0cfe04330 100644
--- a/sys/netpfil/ipfw/dn_sched_fifo.c
+++ b/sys/netpfil/ipfw/dn_sched_fifo.c
@@ -61,6 +61,7 @@ fifo_enqueue(struct dn_sch_inst *si, struct dn_queue *q, struct mbuf *m)
* re-enqueue from an existing scheduler, which we should
* handle.
*/
+ (void)q;
return dn_enqueue((struct dn_queue *)(si+1), m, 0);
}