From e8ecf5e024c0e5fae5a5ea7cf6e04cb08b74b844 Mon Sep 17 00:00:00 2001 From: lloyd Date: Mon, 3 Aug 2009 18:51:57 +0000 Subject: Fix variable name in 32-bit bswap for VC++ --- src/utils/bswap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/bswap.h') diff --git a/src/utils/bswap.h b/src/utils/bswap.h index 7b7edb528..08095b319 100644 --- a/src/utils/bswap.h +++ b/src/utils/bswap.h @@ -33,7 +33,7 @@ inline u32bit reverse_bytes(u32bit input) #elif defined(_MSC_VER) && defined(BOTAN_TARGET_ARCH_IS_IA32) /* Visual C++ inline asm for 32-bit x86, by Yves Jerschow */ - __asm mov eax, x; + __asm mov eax, input; __asm bswap eax; #else -- cgit v1.2.3