提交 3f4de355 编写于 作者: R Rich Felker

fix breakage in endian.h

上级 8705a0f1
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册