diff options
author | lloyd <[email protected]> | 2009-08-03 18:51:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-08-03 18:51:57 +0000 |
commit | e8ecf5e024c0e5fae5a5ea7cf6e04cb08b74b844 (patch) | |
tree | 7eb9fc5c5ec2feb2839d34e1ecc81264c7788d68 | |
parent | fa8fe0047479257d5ab30db14f5c718844feb0a1 (diff) |
Fix variable name in 32-bit bswap for VC++
-rw-r--r-- | src/utils/bswap.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 |