From 2cef8580a043ac19b932a462779a26d222241130 Mon Sep 17 00:00:00 2001 From: Jeff Lenk Date: Thu, 4 Apr 2013 19:41:41 -0500 Subject: [PATCH] oops line endings --- libs/srtp/crypto/include/datatypes.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/libs/srtp/crypto/include/datatypes.h b/libs/srtp/crypto/include/datatypes.h index 34634e318b..31d07db15f 100644 --- a/libs/srtp/crypto/include/datatypes.h +++ b/libs/srtp/crypto/include/datatypes.h @@ -409,11 +409,11 @@ static inline uint32_t be32_to_cpu(uint32_t v) { # define be32_to_cpu(x) ntohl((x)) # endif /* HAVE_X86 */ -# ifdef NO_64BIT_MATH - /* use the make64 functions to do 64-bit math */ -# define be64_to_cpu(v) (make64(htonl(low32(v)),htonl(high32(v)))) -# else -# define be64_to_cpu(v) ((ntohl((uint32_t)(v >> 32))) | (((uint64_t)ntohl((uint32_t)v)) << 32)) +# ifdef NO_64BIT_MATH + /* use the make64 functions to do 64-bit math */ +# define be64_to_cpu(v) (make64(htonl(low32(v)),htonl(high32(v)))) +# else +# define be64_to_cpu(v) ((ntohl((uint32_t)(v >> 32))) | (((uint64_t)ntohl((uint32_t)v)) << 32)) # endif #endif /* ! SRTP_KERNEL_LINUX */