From: FX Le Bail Date: Mon, 10 Feb 2014 15:46:54 +0000 (+0100) Subject: ipv4: ipconfig.c: add parentheses in an if statement X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=357137a4222b1984b3d867923c7e388669744ceb;p=linux-beck.git ipv4: ipconfig.c: add parentheses in an if statement Even if the 'time_before' macro expand with parentheses, the look is bad. Signed-off-by: Francois-Xavier Le Bail Signed-off-by: David S. Miller --- diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index efa1138fa523..b3e86ea7b71b 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c @@ -273,7 +273,7 @@ static int __init ic_open_devs(void) msleep(1); - if time_before(jiffies, next_msg) + if (time_before(jiffies, next_msg)) continue; elapsed = jiffies_to_msecs(jiffies - start);