aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-29 22:10:51 +0000
committerlloyd <[email protected]>2008-09-29 22:10:51 +0000
commit948b5060fa7e636e6d741fe36bbe24b6a028c1d3 (patch)
treea50d5e6a471516097aa90937e31d45e3dc1a7136
parenta9f685f7694792a15ba68d6dfe08aa10f9102606 (diff)
Escape newline in macro
-rw-r--r--src/utils/bswap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/bswap.h b/src/utils/bswap.h
index cee9a1e84..b322b9d9b 100644
--- a/src/utils/bswap.h
+++ b/src/utils/bswap.h
@@ -21,8 +21,8 @@ inline u16bit reverse_bytes(u16bit input)
inline u32bit reverse_bytes(u32bit input)
{
-#if BOTAN_COMPILER_HAS_GCC_INLINE_ASM &&
- (defined(BOTAN_TARGET_ARCH_IS_IA32) || defined(BOTAN_TARGET_ARCH_IS_AMD64))
+#if BOTAN_COMPILER_HAS_GCC_INLINE_ASM && \
+ (defined(BOTAN_TARGET_ARCH_IS_IA32) || defined(BOTAN_TARGET_ARCH_IS_AMD64))
asm("bswapl %0" : "=r" (input) : "0" (input));
return input;