aboutsummaryrefslogtreecommitdiff
path: root/common/bits.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/bits.c')
-rw-r--r--common/bits.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/common/bits.c b/common/bits.c
index dde39f7..92e7be2 100644
--- a/common/bits.c
+++ b/common/bits.c
@@ -29,7 +29,7 @@ __weak uint64_t __bswap64(const uint64_t u)
(u & 0x0000ff0000000000ULL) >> 24 |
(u & 0x000000ff00000000ULL) >> 8 |
(u & 0x00000000ff000000ULL) << 8 |
- (u & 0x0000000000ff0000ULL) << 24 |
- (u & 0x000000000000ff00ULL) << 40 |
- (u & 0x00000000000000ffULL) << 56;
+ (u & 0x0000000000ff0000ULL) << 24 |
+ (u & 0x000000000000ff00ULL) << 40 |
+ (u & 0x00000000000000ffULL) << 56;
}