mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
tipc: bcast: use true and false for boolean values
Assign true or false to boolean variables instead of an integer value. This issue was detected with the help of Coccinelle. Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com> Acked-by: Ying Xue <ying.xue@windriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
3eac60d173
commit
c9efb15a99
1 changed files with 1 additions and 1 deletions
|
@ -574,5 +574,5 @@ void tipc_nlist_purge(struct tipc_nlist *nl)
|
|||
{
|
||||
tipc_dest_list_purge(&nl->list);
|
||||
nl->remote = 0;
|
||||
nl->local = 0;
|
||||
nl->local = false;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue