Commit 357137a4 authored by FX Le Bail's avatar FX Le Bail Committed by David S. Miller

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: default avatarFrancois-Xavier Le Bail <fx.lebail@yahoo.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 602b1099
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment