chg: too many \ slashes

This commit is contained in:
iceman1001 2017-03-14 08:37:13 +01:00
parent f1202c3fa9
commit 966c111e8c

View file

@ -48,13 +48,13 @@
// Byte swapping
#ifndef BSWAP_64
#define BSWAP_64(x) (((uint64_t)(x) << 56) | \\
(((uint64_t)(x) << 40) & 0xff000000000000ULL) | \\
(((uint64_t)(x) << 24) & 0xff0000000000ULL) | \\
(((uint64_t)(x) << 8) & 0xff00000000ULL) | \\
(((uint64_t)(x) >> 8) & 0xff000000ULL) | \\
(((uint64_t)(x) >> 24) & 0xff0000ULL) | \\
(((uint64_t)(x) >> 40) & 0xff00ULL) | \\
#define BSWAP_64(x) (((uint64_t)(x) << 56) | \
(((uint64_t)(x) << 40) & 0xff000000000000ULL) | \
(((uint64_t)(x) << 24) & 0xff0000000000ULL) | \
(((uint64_t)(x) << 8) & 0xff00000000ULL) | \
(((uint64_t)(x) >> 8) & 0xff000000ULL) | \
(((uint64_t)(x) >> 24) & 0xff0000ULL) | \
(((uint64_t)(x) >> 40) & 0xff00ULL) | \
((uint64_t)(x) >> 56))
#endif
#ifndef BSWAP_32