diff options
author | spholz <44805808+spholz@users.noreply.github.com> | 2021-08-16 12:06:35 +0200 |
---|---|---|
committer | spholz <44805808+spholz@users.noreply.github.com> | 2021-08-16 12:06:35 +0200 |
commit | dc47b5a5bf1236c4ae4c1b48b14e59e013f3f6b0 (patch) | |
tree | 1de7a8d1eea688c2b1505a4c134d0d0df2250b84 | |
parent | 70419f7a17880fd1e7834e7fe6e1aad14b0565bb (diff) |
network_interface: fix mingw-w64 build
-rw-r--r-- | src/core/network/network_interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/network/network_interface.cpp b/src/core/network/network_interface.cpp index b719da881..c60deb196 100644 --- a/src/core/network/network_interface.cpp +++ b/src/core/network/network_interface.cpp @@ -69,7 +69,7 @@ std::vector<NetworkInterface> GetAvailableNetworkInterfaces() { continue; } - struct in_addr gateway = {0}; + struct in_addr gateway{.S_un{.S_addr{0}}}; if (current_address->FirstGatewayAddress != nullptr && current_address->FirstGatewayAddress->Address.lpSockaddr != nullptr) { gateway = Common::BitCast<struct sockaddr_in>( |