summaryrefslogtreecommitdiffstats
path: root/sys/arm/include/endian.h
diff options
context:
space:
mode:
authorimp <imp@FreeBSD.org>2012-06-13 05:02:51 +0000
committerimp <imp@FreeBSD.org>2012-06-13 05:02:51 +0000
commite9a3ea52432e88e05b37d79a2d76aaf8afaefa7f (patch)
treea6ac72a3cc942a9deec9340b49338efe4b0f948c /sys/arm/include/endian.h
parent8357ee537019bc93a535c37e3302d55c4572dd40 (diff)
downloadFreeBSD-src-e9a3ea52432e88e05b37d79a2d76aaf8afaefa7f.zip
FreeBSD-src-e9a3ea52432e88e05b37d79a2d76aaf8afaefa7f.tar.gz
trim trailing whitespace
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 8e3b952..1d792ea 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)));
}
OpenPOWER on IntegriCloud