diff options
author | lloyd <[email protected]> | 2011-05-09 15:00:36 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-05-09 15:00:36 +0000 |
commit | 070e176e36ee9cdd100aef6b8a702c4f1bfa47b9 (patch) | |
tree | 37ea620259a23a5cd4c481c5d1657c9e47d12966 | |
parent | 0a29b9bbc96b5bb9d27960f27dbb3626a5290c8c (diff) |
dword was set to a size_t if we were using a 16 bit limb. Caused by an
overzealous perl script...
-rw-r--r-- | src/math/mp/mp_generic/mp_asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/mp/mp_generic/mp_asm.h b/src/math/mp/mp_generic/mp_asm.h index ee46e1aa9..7c18343ef 100644 --- a/src/math/mp/mp_generic/mp_asm.h +++ b/src/math/mp/mp_generic/mp_asm.h @@ -14,7 +14,7 @@ #if (BOTAN_MP_WORD_BITS == 8) typedef Botan::u16bit dword; #elif (BOTAN_MP_WORD_BITS == 16) - typedef Botan::size_t dword; + typedef Botan::u32bit dword; #elif (BOTAN_MP_WORD_BITS == 32) typedef Botan::u64bit dword; #elif (BOTAN_MP_WORD_BITS == 64) |