mirror of
https://git.musl-libc.org/git/musl
synced 2025-01-23 06:32:05 +03:00
fix breakage in endian.h
This commit is contained in:
parent
8705a0f1af
commit
3f4de355ba
@ -28,7 +28,7 @@ static inline uint32_t __bswap32(uint32_t __x)
|
||||
|
||||
static inline uint64_t __bswap64(uint64_t __x)
|
||||
{
|
||||
return __bswap_32(__x)+0ULL<<32 | __bswap_32(__x>>32);
|
||||
return __bswap32(__x)+0ULL<<32 | __bswap32(__x>>32);
|
||||
}
|
||||
|
||||
#if __BYTE_ORDER == __LITTLE_ENDIAN
|
||||
|
Loading…
Reference in New Issue
Block a user