aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ipconfig.c
diff options
context:
space:
mode:
authorFX Le Bail <fx.lebail@yahoo.com>2014-02-10 16:46:54 +0100
committerDavid S. Miller <davem@davemloft.net>2014-02-14 00:14:23 -0500
commit357137a4222b1984b3d867923c7e388669744ceb (patch)
tree3e50003d2c59235f98af29920dfeba24e257ccd2 /net/ipv4/ipconfig.c
parentnet:phy:dp83640: Move all HW initialization to dp83640_config_init (diff)
downloadlinux-dev-357137a4222b1984b3d867923c7e388669744ceb.tar.xz
linux-dev-357137a4222b1984b3d867923c7e388669744ceb.zip
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/ipv4/ipconfig.c')
-rw-r--r--net/ipv4/ipconfig.c2
1 files changed, 1 insertions, 1 deletions
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);