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

Commit f9bddcdf authored by Joe Perches's avatar Joe Perches Committed by David S. Miller
Browse files

udp: Remove unnecessary semicolon from do{}while (0) macro



Just an unnecessary semicolon that should be removed...

Whitespace neatening of macro too.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent acec6d75
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@ struct sock *__udp6_lib_lookup(struct net *net,
		UDP_INC_STATS_BH(sock_net(sk), field, 0);		\
	else								\
		UDP6_INC_STATS_BH(sock_net(sk), field, 0);		\
	} while (0);
} while (0)
#else
#define UDPX_INC_STATS_BH(sk, field) UDP_INC_STATS_BH(sock_net(sk), field, 0)
#endif