aboutsummaryrefslogtreecommitdiffstats
path: root/src/math
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-12-22 18:59:59 +0000
committerlloyd <[email protected]>2010-12-22 18:59:59 +0000
commite8879a0616f5b14da8d0705dff47df0c2f886daa (patch)
treed481c9c8fee8928634bc4c639ef744639d4f3154 /src/math
parent2aee2f41ae3ef320ee91d59081c0b4d9973d5191 (diff)
Oops - should not have used size_t here!
Diffstat (limited to 'src/math')
-rw-r--r--src/math/mp/mp_types.h2
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