diff options
author | lloyd <[email protected]> | 2010-12-13 22:06:59 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-12-13 22:06:59 +0000 |
commit | aa8a0c19ec2156864d16bfe4b82fce4f2203c08d (patch) | |
tree | c6de672209e59214c91f29a702339c35d518c459 /checks | |
parent | d73929a5ec894625e7e4cb82c1a22bea4a0e7a26 (diff) |
Avoid more VC warnings
Diffstat (limited to 'checks')
-rw-r--r-- | checks/block.cpp | 4 |
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; }; |