diff options
author | Jeff Garzik <jeff@garzik.org> | 2012-04-15 17:00:20 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2012-04-15 17:00:20 -0400 |
commit | 9fb89c26f3a3991d197b207f44ef79b1d16c26fc (patch) | |
tree | fdb5e70ffc5dc058955f76c51648e364f054444a /src/key.h | |
parent | 0dd710acb6ae14bb88b33a9f86c549bdbb4b6975 (diff) |
Fix misc. minor sign-comparison warnings
Diffstat (limited to 'src/key.h')
-rw-r--r-- | src/key.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -173,7 +173,7 @@ public: CPrivKey GetPrivKey() const { - unsigned int nSize = i2d_ECPrivateKey(pkey, NULL); + int nSize = i2d_ECPrivateKey(pkey, NULL); if (!nSize) throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed"); CPrivKey vchPrivKey(nSize, 0); @@ -196,7 +196,7 @@ public: std::vector<unsigned char> GetPubKey() const { - unsigned int nSize = i2o_ECPublicKey(pkey, NULL); + int nSize = i2o_ECPublicKey(pkey, NULL); if (!nSize) throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed"); std::vector<unsigned char> vchPubKey(nSize, 0); |