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

Commit 02784f1b authored by David S. Miller's avatar David S. Miller
Browse files

tipc: Fix build.



Missing semicolon in range check fix.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d3b6f9ff
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -182,8 +182,9 @@ static inline int tipc_port_importance(struct tipc_port *port)
static inline int tipc_port_set_importance(struct tipc_port *port, int imp)
{
	if (imp > TIPC_CRITICAL_IMPORTANCE)
		return -EINVAL
		return -EINVAL;
	msg_set_importance(&port->phdr, (u32)imp);
	return 0;
}

#endif