aboutsummaryrefslogtreecommitdiff
path: root/src/crypter.cpp
diff options
context:
space:
mode:
authorGavin Andresen <[email protected]>2012-04-17 10:55:56 -0700
committerGavin Andresen <[email protected]>2012-04-17 10:55:56 -0700
commitb97d54355e8239273b50c54dbedfde16ed82fd73 (patch)
tree7c605817ec5a41b86b5656916eaa014e13fb247f /src/crypter.cpp
parentMerge pull request #1115 from laanwj/2012_04_cleanupmisc (diff)
parentFix misc. minor sign-comparison warnings (diff)
downloaddiscoin-b97d54355e8239273b50c54dbedfde16ed82fd73.tar.xz
discoin-b97d54355e8239273b50c54dbedfde16ed82fd73.zip
Merge pull request #1106 from jgarzik/sign-compare
Fix many sign-comparison warnings found in bitcoin codebase
Diffstat (limited to 'src/crypter.cpp')
-rw-r--r--src/crypter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypter.cpp b/src/crypter.cpp
index 83041addb..2501305ed 100644
--- a/src/crypter.cpp
+++ b/src/crypter.cpp
@@ -31,7 +31,7 @@ bool CCrypter::SetKeyFromPassphrase(const SecureString& strKeyData, const std::v
i = EVP_BytesToKey(EVP_aes_256_cbc(), EVP_sha512(), &chSalt[0],
(unsigned char *)&strKeyData[0], strKeyData.size(), nRounds, chKey, chIV);
- if (i != WALLET_CRYPTO_KEY_SIZE)
+ if (i != (int)WALLET_CRYPTO_KEY_SIZE)
{
memset(&chKey, 0, sizeof chKey);
memset(&chIV, 0, sizeof chIV);