summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroleg <oleg@FreeBSD.org>2009-11-09 09:12:45 +0000
committeroleg <oleg@FreeBSD.org>2009-11-09 09:12:45 +0000
commit12da1cc788a5f1fc46e511727b7e21ac9d0e19b2 (patch)
treee1f6d0dd5a101f505dd49dd0d5adecd60319a3d0
parentb7a17acd73817489ba365041d0d1d2767ee673ed (diff)
downloadFreeBSD-src-12da1cc788a5f1fc46e511727b7e21ac9d0e19b2.zip
FreeBSD-src-12da1cc788a5f1fc46e511727b7e21ac9d0e19b2.tar.gz
style(9): add missing parentheses
-rw-r--r--sys/netinet/ipfw/ip_dummynet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ipfw/ip_dummynet.c b/sys/netinet/ipfw/ip_dummynet.c
index 3de27a1..e961a55 100644
--- a/sys/netinet/ipfw/ip_dummynet.c
+++ b/sys/netinet/ipfw/ip_dummynet.c
@@ -252,7 +252,7 @@ static int dummynet_io(struct mbuf **, int , struct ip_fw_args *);
#define QUEUE_IS_IDLE(q) ((q)->head == NULL && (q)->S == (q)->F + 1 && \
curr_time > (q)->idle_time + 1 && \
((q)->numbytes + (curr_time - (q)->idle_time - 1) * \
- (q)->fs->pipe->bandwidth >= q->fs->pipe->burst))
+ (q)->fs->pipe->bandwidth >= (q)->fs->pipe->burst))
/*
* Heap management functions.
OpenPOWER on IntegriCloud