Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);