From: iceman1001 <iceman@iuse.se>
Date: Tue, 14 Mar 2017 07:37:13 +0000 (+0100)
Subject: chg:  too many \ slashes
X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/966c111e8c8e45e624465502d0ee405ebda9a39c?ds=sidebyside;hp=--cc

chg:  too many \ slashes
---

966c111e8c8e45e624465502d0ee405ebda9a39c
diff --git a/client/util.h b/client/util.h
index 87541f4b..ede50e8c 100644
--- a/client/util.h
+++ b/client/util.h
@@ -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