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

Commit 1fa07380 authored by Paul Gortmaker's avatar Paul Gortmaker
Browse files

tipc: delete extra semicolon blocking node deletion



Remove bogus semicolon only recently introduced in 34e46258
that blocks cleanup of nodes for N>1 on shutdown.

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
parent 4e75db2e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -221,7 +221,7 @@ void tipc_net_stop(void)
	tipc_bearer_stop();
	tipc_mode = TIPC_NODE_MODE;
	tipc_bclink_stop();
	list_for_each_entry_safe(node, t_node, &tipc_node_list, list);
	list_for_each_entry_safe(node, t_node, &tipc_node_list, list)
		tipc_node_delete(node);
	write_unlock_bh(&tipc_net_lock);
	info("Left network mode\n");