summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/socket.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/socket.cpp b/src/socket.cpp
index bca9c5390..508d61a31 100644
--- a/src/socket.cpp
+++ b/src/socket.cpp
@@ -202,7 +202,8 @@ std::string Address::serializeString() const
#ifdef _WIN32
if(m_addr_family == AF_INET)
{
- u8 a, b, c, d, addr;
+ u8 a, b, c, d;
+ u32 addr;
addr = ntohl(m_address.ipv4.sin_addr.s_addr);
a = (addr & 0xFF000000) >> 24;
b = (addr & 0x00FF0000) >> 16;