summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2013-11-01 21:39:34 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-11-01 21:41:52 +0000
commit3f9b187baef777b8e55cf21a8c3aa20cc043961e (patch)
tree937555b4f1e4ef1ebdeceab72655ef5aeaed6b6e /engines
parentfb65e65e28136e465f2534a5abade67ed3a03cee (diff)
Fix warning.
Diffstat (limited to 'engines')
-rw-r--r--engines/e_aep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_aep.c b/engines/e_aep.c
index 1518d2bac1..a9372268cd 100644
--- a/engines/e_aep.c
+++ b/engines/e_aep.c
@@ -1065,7 +1065,7 @@ static AEP_RV MakeAEPBigNum(AEP_VOID_PTR ArbBigNum, AEP_U32 BigNumSize,
{
BIGNUM* bn;
const union { long one; char little; } is_endian = {1};
- int i,j;
+ AEP_U32 i,j;
/*Cast the ArbBigNum pointer to our BIGNUM struct*/
bn = (BIGNUM*) ArbBigNum;