aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lcl.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-11-02 12:50:48 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-11-02 12:50:48 +0000
commitc76fd290be9e4a755dde3c5fe1ed886a89e30fc6 (patch)
treefcede0e06d67a9ef78dbae03b3fb4cf812403f4b /crypto/bn/bn_lcl.h
parentd0a20cafa1ee76ae0b270e6bb6db50f18e874cf6 (diff)
downloadopenssl-c76fd290be9e4a755dde3c5fe1ed886a89e30fc6.tar.gz
Fix warnings about mismatched prototypes, undefined size_t and value computed
not used.
Diffstat (limited to 'crypto/bn/bn_lcl.h')
-rw-r--r--crypto/bn/bn_lcl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index 857616d53b..05e8874a5a 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -481,8 +481,9 @@ void bn_mul_high(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, BN_ULONG *l, int n2,
BN_ULONG *t);
BN_ULONG bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
size_t cl, ssize_t dl);
-BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
- int cl, int dl);
+BN_ULONG bn_sub_part_words(BN_ULONG *r,
+ const BN_ULONG *a, const BN_ULONG *b,
+ size_t cl, ssize_t dl);
int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
const BN_ULONG *np,const BN_ULONG *n0, int num);