aboutsummaryrefslogtreecommitdiff
path: root/src/core/network/network.cpp
diff options
context:
space:
mode:
authorSönke Holz <sholz8530@gmail.com>2021-08-12 22:15:48 +0200
committerSönke Holz <sholz8530@gmail.com>2021-08-12 22:15:48 +0200
commit21743daf38f19160baa2da0e939a4e945dd57228 (patch)
tree99b45f0de20ddfde64a25d9cb42d0f328c0858fc /src/core/network/network.cpp
parent1e98e738283ccb81303d29305188ac825ecfcba9 (diff)
network: correct formatting in network.cpp and network_interface.cpp
Diffstat (limited to 'src/core/network/network.cpp')
-rw-r--r--src/core/network/network.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/network/network.cpp b/src/core/network/network.cpp
index 67ecf57bd..9a4ac7e83 100644
--- a/src/core/network/network.cpp
+++ b/src/core/network/network.cpp
@@ -13,13 +13,13 @@
#include <winsock2.h>
#include <ws2tcpip.h>
#elif YUZU_UNIX
+#include <arpa/inet.h>
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <poll.h>
#include <sys/socket.h>
-#include <arpa/inet.h>
#include <unistd.h>
#else
#error "Unimplemented platform"
@@ -363,8 +363,8 @@ NetworkInstance::~NetworkInstance() {
std::optional<IPv4Address> GetHostIPv4Address() {
const std::string& selected_network_interface = Settings::values.network_interface.GetValue();
const auto network_interfaces = Network::GetAvailableNetworkInterfaces();
- ASSERT_MSG(network_interfaces.size() > 0, "GetAvailableNetworkInterfaces returned no interfaces");
-
+ ASSERT_MSG(network_interfaces.size() > 0,
+ "GetAvailableNetworkInterfaces returned no interfaces");
const auto res = std::ranges::find_if(network_interfaces,
[&selected_network_interface](const auto& interface) {