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>
This commit is contained in:
parent
602b109942
commit
357137a422
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue