diff options
author | FX Le Bail <fx.lebail@yahoo.com> | 2014-02-10 16:46:54 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-02-14 00:14:23 -0500 |
commit | 357137a4222b1984b3d867923c7e388669744ceb (patch) | |
tree | 3e50003d2c59235f98af29920dfeba24e257ccd2 /net | |
parent | 602b109942b816e56639a965ae81f3a2437004b5 (diff) |
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 <fx.lebail@yahoo.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv4/ipconfig.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index efa1138fa52..b3e86ea7b71 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); |