From 12da1cc788a5f1fc46e511727b7e21ac9d0e19b2 Mon Sep 17 00:00:00 2001 From: oleg Date: Mon, 9 Nov 2009 09:12:45 +0000 Subject: style(9): add missing parentheses --- sys/netinet/ipfw/ip_dummynet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.1