diff options
author | lloyd <[email protected]> | 2010-12-22 18:59:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-12-22 18:59:59 +0000 |
commit | e8879a0616f5b14da8d0705dff47df0c2f886daa (patch) | |
tree | d481c9c8fee8928634bc4c639ef744639d4f3154 /src/math | |
parent | 2aee2f41ae3ef320ee91d59081c0b4d9973d5191 (diff) |
Oops - should not have used size_t here!
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/mp/mp_types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/mp/mp_types.h b/src/math/mp/mp_types.h index e8723b5bf..1648713ed 100644 --- a/src/math/mp/mp_types.h +++ b/src/math/mp/mp_types.h @@ -17,7 +17,7 @@ namespace Botan { #elif (BOTAN_MP_WORD_BITS == 16) typedef u16bit word; #elif (BOTAN_MP_WORD_BITS == 32) - typedef size_t word; + typedef u32bit word; #elif (BOTAN_MP_WORD_BITS == 64) typedef u64bit word; #else |