aboutsummaryrefslogtreecommitdiffstats
path: root/src/block/idea
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/idea')
-rw-r--r--src/block/idea/idea.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/block/idea/idea.cpp b/src/block/idea/idea.cpp
index be7680b2c..f9b6cc874 100644
--- a/src/block/idea/idea.cpp
+++ b/src/block/idea/idea.cpp
@@ -60,7 +60,7 @@ u16bit mul_inv(u16bit x)
*/
void idea_op(const byte in[], byte out[], size_t blocks, const u16bit K[52])
{
- const u32bit BLOCK_SIZE = 8;
+ const size_t BLOCK_SIZE = 8;
for(size_t i = 0; i != blocks; ++i)
{