mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-03 10:49:59 +00:00
network: use explicit bool conversions in GetAvailableNetworkInterfaces
This commit is contained in:
parent
765e97c347
commit
771de32af1
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ std::vector<NetworkInterface> GetAvailableNetworkInterfaces() {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!(ifa->ifa_flags & IFF_UP) || ifa->ifa_flags & IFF_LOOPBACK) {
|
if ((ifa->ifa_flags & IFF_UP) == 0 || (ifa->ifa_flags & IFF_LOOPBACK) != 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue