From: sapier Date: Fri, 11 Apr 2014 20:51:10 +0000 (+0200) Subject: Fix broken Ipv4 serialization on win32 X-Git-Tag: 0.4.10~193 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=960d731587f58036bd4957f4a77db41e145c2d04;p=oweals%2Fminetest.git Fix broken Ipv4 serialization on win32 --- 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;