diff options
author | Francois-Xavier Le Bail <fx.lebail@yahoo.com> | 2016-08-29 19:11:01 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <fx.lebail@yahoo.com> | 2016-08-29 20:02:29 +0200 |
commit | 53f4f63a0954fe2fa1e9e00a39062358ba01a19a (patch) | |
tree | 9cb8a7a3621e0df1fc544fc468e58698b1f36eef /extract.h | |
parent | 12857bf113ae8409fbdf994ca9c6a5977dd77856 (diff) | |
download | tcpdump-53f4f63a0954fe2fa1e9e00a39062358ba01a19a.tar.gz |
Remove unnecessary backslashes
Diffstat (limited to 'extract.h')
-rw-r--r-- | extract.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -103,7 +103,7 @@ EXTRACT_32BITS(const void *p) static inline uint64_t EXTRACT_64BITS(const void *p) { - return ((uint64_t)(((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 0)->val)) << 32 | \ + return ((uint64_t)(((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 0)->val)) << 32 | ((uint64_t)ntohl(((const unaligned_uint32_t *)(p) + 1)->val)) << 0)); } @@ -153,7 +153,7 @@ EXTRACT_32BITS(const void *p) static inline uint64_t EXTRACT_64BITS(const void *p) { - return ((uint64_t)(((uint64_t)ntohl(*((const uint32_t *)(p) + 0))) << 32 | \ + return ((uint64_t)(((uint64_t)ntohl(*((const uint32_t *)(p) + 0))) << 32 | ((uint64_t)ntohl(*((const uint32_t *)(p) + 1))) << 0)); } |