aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorNils Larsch <nils@openssl.org>2007-03-02 19:56:29 +0000
committerNils Larsch <nils@openssl.org>2007-03-02 19:56:29 +0000
commitebb01b84b89132858f247153094ea42fd5df1ba0 (patch)
tree4ee02960aea82944982c45369a8b3b560e0567a8 /crypto
parenta0d48e7e7e0d203801f05aeac101aaf8a79fea1a (diff)
downloadopenssl-ebb01b84b89132858f247153094ea42fd5df1ba0.tar.gz
size_t -> int
Diffstat (limited to 'crypto')
-rw-r--r--crypto/dsa/dsa_gen.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/crypto/dsa/dsa_gen.c b/crypto/dsa/dsa_gen.c
index aa0995564d..6d428447ef 100644
--- a/crypto/dsa/dsa_gen.c
+++ b/crypto/dsa/dsa_gen.c
@@ -120,8 +120,7 @@ int dsa_builtin_paramgen(DSA *ret, size_t bits, size_t qbits,
BIGNUM *r0,*W,*X,*c,*test;
BIGNUM *g=NULL,*q=NULL,*p=NULL;
BN_MONT_CTX *mont=NULL;
- size_t i;
- int k,n=0,b,m=0, qsize = qbits >> 3;
+ int i, k,n=0,b,m=0, qsize = qbits >> 3;
int counter=0;
int r=0;
BN_CTX *ctx=NULL;