summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_asm.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-18 20:49:02 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-18 20:49:02 +0000
commit0450d287597474ee60d8935bbfdd44e1a0a7ca93 (patch)
tree52a475e2a5c000b6c81147105fc87b958d5d3862 /crypto/bn/bn_asm.c
parent7f56097c65f5ec404709256b163fea66ab8238d2 (diff)
Make the definition of bn_add_words() match the definition.
Diffstat (limited to 'crypto/bn/bn_asm.c')
-rw-r--r--crypto/bn/bn_asm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_asm.c b/crypto/bn/bn_asm.c
index a5dc574fd8..be8aa3ffc5 100644
--- a/crypto/bn/bn_asm.c
+++ b/crypto/bn/bn_asm.c
@@ -296,7 +296,7 @@ BN_ULONG bn_div_words(BN_ULONG h, BN_ULONG l, BN_ULONG d)
#endif /* !defined(BN_LLONG) && defined(BN_DIV2W) */
#ifdef BN_LLONG
-BN_ULONG bn_add_words(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b, int n)
+BN_ULONG bn_add_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n)
{
BN_ULLONG ll=0;