aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include/endian.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2012-06-13 05:02:51 +0000
committerWarner Losh <imp@FreeBSD.org>2012-06-13 05:02:51 +0000
commitee5cac8ab01819360dbc5d7fdac1f903fefe9479 (patch)
treea6ac72a3cc942a9deec9340b49338efe4b0f948c /sys/arm/include/endian.h
parent5e92d389b29e7b6d827e875428d795803760ca01 (diff)
trim trailing whitespace
Notes
Notes: svn path=/head/; revision=236992
Diffstat (limited to 'sys/arm/include/endian.h')
-rw-r--r--sys/arm/include/endian.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arm/include/endian.h b/sys/arm/include/endian.h
index 8e3b952e76c7..1d792ea89890 100644
--- a/sys/arm/include/endian.h
+++ b/sys/arm/include/endian.h
@@ -78,7 +78,7 @@ __bswap64(__uint64_t _x)
return ((_x >> 56) | ((_x >> 40) & 0xff00) | ((_x >> 24) & 0xff0000) |
((_x >> 8) & 0xff000000) | ((_x << 8) & ((__uint64_t)0xff << 32)) |
- ((_x << 24) & ((__uint64_t)0xff << 40)) |
+ ((_x << 24) & ((__uint64_t)0xff << 40)) |
((_x << 40) & ((__uint64_t)0xff << 48)) | ((_x << 56)));
}