summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2014-01-19 04:14:35 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2014-01-19 04:14:35 +0000
commit8f2e4656375af58ccf350ef6fe03a34e68401fbe (patch)
tree011fe121437bc31679e681d8597584190aa1ca15
parent11f0d054fb9d24ed3292bac7f7a218dcf1588cda (diff)
Fix minor ident issue. OK benno@, pelikan@
-rw-r--r--sbin/pfctl/pfctl_altq.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/pfctl/pfctl_altq.c b/sbin/pfctl/pfctl_altq.c
index e3d3f341fb1..4e32053e5dc 100644
--- a/sbin/pfctl/pfctl_altq.c
+++ b/sbin/pfctl/pfctl_altq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_altq.c,v 1.100 2013/10/12 12:16:11 henning Exp $ */
+/* $OpenBSD: pfctl_altq.c,v 1.101 2014/01/19 04:14:34 claudio Exp $ */
/*
* Copyright (c) 2002
@@ -459,8 +459,7 @@ cbq_compute_idletime(struct pfctl *pf, struct pf_altq *pa)
warnx("queue bandwidth must be larger than %s",
rate2str(ifnsPerByte * (double)opts->maxpktsize /
(double)INT_MAX * (double)pa->ifbandwidth));
- fprintf(stderr, "cbq: queue %s is too slow!\n",
- pa->qname);
+ fprintf(stderr, "cbq: queue %s is too slow!\n", pa->qname);
nsPerByte = (double)(INT_MAX / opts->maxpktsize);
}