fix compiler signed comparison warning

git-svn-id: http://encfs.googlecode.com/svn/trunk@100 db9cf616-1c43-0410-9cb8-a902689de0d6
This commit is contained in:
Valient Gough 2013-06-17 03:17:31 +00:00
parent bd182db260
commit 2d90473d09

View File

@ -407,7 +407,8 @@ bool CipherV1::pseudoRandomize( byte *buf, int len )
bool CipherV1::setKey(const CipherKey &keyIv) {
Lock l(_hmacMutex);
LOG_IF(ERROR, _keySize != keyIv.size()) << "Mismatched key size: passed "
LOG_IF(ERROR, (int)_keySize != keyIv.size())
<< "Mismatched key size: passed "
<< keyIv.size() << ", expecting " << _keySize;
// Key is actually key plus iv, so extract the different parts.