diff options
author | Samuel Barney <samjbarney@gmail.com> | 2015-07-09 19:15:37 +0200 |
---|---|---|
committer | Samuel Barney <samjbarney@gmail.com> | 2015-07-09 19:15:37 +0200 |
commit | aa94a275c603e7e8bd65cf1b7440017217a86c17 (patch) | |
tree | 325f7de76044dd8e120919c327d853e605d5828d /src/Endianness.h | |
parent | Network: Fixed ServerHandle's address formatting. (diff) | |
download | cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar.gz cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar.bz2 cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar.lz cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar.xz cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.tar.zst cuberite-aa94a275c603e7e8bd65cf1b7440017217a86c17.zip |
Diffstat (limited to 'src/Endianness.h')
-rw-r--r-- | src/Endianness.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Endianness.h b/src/Endianness.h index a415903a5..0e8bc8e99 100644 --- a/src/Endianness.h +++ b/src/Endianness.h @@ -2,7 +2,7 @@ #pragma once #undef ntohll -#define ntohll(x) ((((UInt64)ntohl((UInt32)x)) << 32) + ntohl(x >> 32)) +#define ntohll(x) (((static_cast<UInt64>(ntohl(static_cast<UInt32>(x)))) << 32) + ntohl(x >> 32)) @@ -13,7 +13,7 @@ inline UInt64 HostToNetwork8(const void * a_Value) { UInt64 buf; memcpy( &buf, a_Value, sizeof( buf)); - buf = (( ( (UInt64)htonl((UInt32)buf)) << 32) + htonl(buf >> 32)); + buf = (( ( static_cast<UInt64>(htonl(static_cast<UInt32>(buf)))) << 32) + htonl(buf >> 32)); return buf; } |