Skip to content

Commit

Permalink
ipv4: ipconfig.c: add parentheses in an if statement
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
FX Le Bail authored and David S. Miller committed Feb 14, 2014
1 parent 602b109 commit 357137a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/ipv4/ipconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 357137a

Please sign in to comment.