projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
975efcb
)
Unsigned vs signed comparison warning.
author
Andy Polyakov
<appro@openssl.org>
Tue, 4 Jul 2006 20:29:14 +0000
(20:29 +0000)
committer
Andy Polyakov
<appro@openssl.org>
Tue, 4 Jul 2006 20:29:14 +0000
(20:29 +0000)
crypto/bn/bn_gf2m.c
patch
|
blob
|
history
diff --git
a/crypto/bn/bn_gf2m.c
b/crypto/bn/bn_gf2m.c
index e962e4f799c5c5081027405b5574bf4b7d10a4e8..be409e1187946efe7264e7ac9702e36383642b49 100644
(file)
--- a/
crypto/bn/bn_gf2m.c
+++ b/
crypto/bn/bn_gf2m.c
@@
-855,8
+855,7
@@
err:
*/
int BN_GF2m_mod_solve_quad_arr(BIGNUM *r, const BIGNUM *a_, const int p[], BN_CTX *ctx)
{
- int ret = 0, count = 0;
- unsigned int j;
+ int ret = 0, count = 0, j;
BIGNUM *a, *z, *rho, *w, *w2, *tmp;
bn_check_top(a_);