#1 pr concern addressed

This commit is contained in:
Dmytro Sydorchenko
2023-05-08 20:54:13 -04:00
parent 107d7a9271
commit 9e6b206efc
+1 -1
View File
@@ -34,7 +34,7 @@ static __inline uint32_t __bswap32(uint32_t __x)
static __inline uint64_t __bswap64(uint64_t __x)
{
return (__bswap32(__x)+0ULL)<<32 | __bswap32(__x>>32);
return (uint64_t)__bswap32(__x) <<32 | __bswap32(__x>>32);
}
#if __BYTE_ORDER == __LITTLE_ENDIAN