aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-12-13 22:06:59 +0000
committerlloyd <[email protected]>2010-12-13 22:06:59 +0000
commitaa8a0c19ec2156864d16bfe4b82fce4f2203c08d (patch)
treec6de672209e59214c91f29a702339c35d518c459 /checks
parentd73929a5ec894625e7e4cb82c1a22bea4a0e7a26 (diff)
Avoid more VC warnings
Diffstat (limited to 'checks')
-rw-r--r--checks/block.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/checks/block.cpp b/checks/block.cpp
index dc3350ce3..5d275615e 100644
--- a/checks/block.cpp
+++ b/checks/block.cpp
@@ -54,10 +54,10 @@ class ECB_Encryption_ErrorCheck : public Filter
}
private:
- const u32bit BLOCKSIZE;
+ const size_t BLOCKSIZE;
BlockCipher* cipher;
SecureVector<byte> buffer;
- u32bit position;
+ size_t position;
HashFunction* input_hash, *decrypt_hash;
};