summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2017-05-15 11:59:31 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2017-05-15 11:59:31 +0000
commitae80f51fcf7ad6757bb25f49546f7463a0ae3043 (patch)
treeebda59e5c725a74b366286aced7ac4f40be0c54e /sys
parent08e08a3dbc87a534667b6e9348f208f3377c746a (diff)
clang warns on unused static const variables. Remove one such unused
variable so the kernel will build on arm64 again.
Diffstat (limited to 'sys')
-rw-r--r--sys/net/fq_codel.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/sys/net/fq_codel.c b/sys/net/fq_codel.c
index 982e51373d3..9a094a3c386 100644
--- a/sys/net/fq_codel.c
+++ b/sys/net/fq_codel.c
@@ -157,9 +157,6 @@ const struct pfq_ops * const pfq_fqcodel_ops = &fqcodel_pf_ops;
/* Default aggregate queue depth */
static const unsigned int fqcodel_qlimit = 1024;
-/* Packet drop threshold */
-static const unsigned int fqcodel_threshold = 64;
-
/*
* CoDel implementation
*/