networkd: remove unnecessary parentheses

Follow-up for 56a23cb40a.
This commit is contained in:
Yu Watanabe 2018-01-15 23:47:55 +09:00
parent 3e7e587d32
commit 55a7c78b9d
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ static bool link_radv_enabled(Link *link) {
if (!link_ipv6ll_enabled(link))
return false;
return (link->network->router_prefix_delegation != RADV_PREFIX_DELEGATION_NONE);
return link->network->router_prefix_delegation != RADV_PREFIX_DELEGATION_NONE;
}
static bool link_lldp_rx_enabled(Link *link) {