Forgot to fix this for Linux too
This commit is contained in:
parent
408d37a27a
commit
278ff26795
|
|
@ -63,7 +63,7 @@ namespace Nz
|
||||||
|
|
||||||
IpAddress::IPv6 ipv6;
|
IpAddress::IPv6 ipv6;
|
||||||
for (unsigned int i = 0; i < 8; ++i)
|
for (unsigned int i = 0; i < 8; ++i)
|
||||||
ipv6[i] = rawIpV6[i * 2] << 8 | rawIpV6[i * 2 + 1];
|
ipv6[i] = Nz::UInt16(rawIpV6[i * 2]) << 8 | rawIpV6[i * 2 + 1];
|
||||||
|
|
||||||
return ipv6;
|
return ipv6;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue