happy linter

Signed-off-by: Viktar Lukashonak <myxabeer@gmail.com>
This commit is contained in:
Viktar Lukashonak 2023-04-28 15:38:34 +03:00
parent e253c34cd4
commit 8c83af75a1
No known key found for this signature in database
GPG Key ID: 08A413AA87200A6F
1 changed files with 2 additions and 4 deletions

View File

@ -497,8 +497,7 @@ int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
net->ifname_ = new_ifname;
net->ifid_ = ifi->ifi_index;
if (ifi->ifi_flags & IFF_POINTOPOINT)
net->is_p2p_ = true;
if (ifi->ifi_flags & IFF_POINTOPOINT) net->is_p2p_ = true;
if (carrier.has_value()) {
net->carrier_ = carrier.value();
}
@ -543,8 +542,7 @@ int waybar::modules::Network::handleEvents(struct nl_msg *msg, void *data) {
for (; RTA_OK(ifa_rta, attrlen); ifa_rta = RTA_NEXT(ifa_rta, attrlen)) {
switch (ifa_rta->rta_type) {
case IFA_ADDRESS:
if (net->is_p2p_)
continue;
if (net->is_p2p_) continue;
case IFA_LOCAL:
char ipaddr[INET6_ADDRSTRLEN];
if (!is_del_event) {