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

Commit 886eaa1f authored by Fabian Frederick's avatar Fabian Frederick Committed by David S. Miller
Browse files

tipc: replace 0 by NULL for pointers



Fix sparse warning:
net/tipc/link.c:1924:40: warning: Using plain integer as NULL pointer

Signed-off-by: default avatarFabian Frederick <fabf@skynet.be>
Acked-by: default avatarYing Xue <ying.xue@windriver.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f230332f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1921,7 +1921,7 @@ static struct tipc_node *tipc_link_find_owner(const char *link_name,
{
	struct tipc_link *l_ptr;
	struct tipc_node *n_ptr;
	struct tipc_node *found_node = 0;
	struct tipc_node *found_node = NULL;
	int i;

	*bearer_id = 0;