aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils/bswap.h2
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