summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-04-03 15:01:28 +0000
committerRichard Levitte <levitte@openssl.org>2002-04-03 15:01:28 +0000
commitbbd79bdf03622248f85469861e4de528db4228c0 (patch)
treefd75af154861f74deb21cd78f3858d48a16ca1ad /crypto/engine
parenta096e9b71918b5cc7eb6323066e6c0bd3e2aed2c (diff)
Forgot one of the casts
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/hw_sureware.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/hw_sureware.c b/crypto/engine/hw_sureware.c
index c3bef29e83..73a274cd48 100644
--- a/crypto/engine/hw_sureware.c
+++ b/crypto/engine/hw_sureware.c
@@ -1024,7 +1024,7 @@ static int surewarehk_modexp(BIGNUM *r, const BIGNUM *a, const BIGNUM *p,
(unsigned long *)p->d,
a->top*sizeof(BN_ULONG),
(unsigned long *)a->d,
- r->d);
+ (unsigned long *)r->d);
surewarehk_error_handling(msg,SUREWARE_F_SUREWAREHK_MOD_EXP,ret);
if (ret==1)
{