fix warning: comparison between signed and unsigned integer
This commit is contained in:
parent
532c511f52
commit
71884788e3
@ -141,7 +141,7 @@ int dh_make_key(prng_state *prng, int wprng, int groupsize, dh_key *key)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* find key size */
|
/* find key size */
|
||||||
for (x = 0; (keysize > sets[x].size) && (sets[x].size != 0); x++);
|
for (x = 0; ((int)keysize > sets[x].size) && (sets[x].size != 0); x++);
|
||||||
if (sets[x].size == 0) {
|
if (sets[x].size == 0) {
|
||||||
return CRYPT_INVALID_KEYSIZE;
|
return CRYPT_INVALID_KEYSIZE;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user