mirror of
https://github.com/AntelopeIO/cdt-musl.git
synced 2026-07-21 13:53:40 +00:00
#1 pr concern addressed
This commit is contained in:
+1
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user