aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lib.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-11-16 22:43:32 +0000
committerRichard Levitte <levitte@openssl.org>2000-11-16 22:43:32 +0000
commitcbd48ba626845170ee2b70774e881a4b50a7369d (patch)
tree946ca57aacaadcdbe4a543695653a73dc9bedd40 /crypto/bn/bn_lib.c
parent67d93e6f49db9029708142ebbaa7bd7084e4468a (diff)
downloadopenssl-cbd48ba626845170ee2b70774e881a4b50a7369d.tar.gz
More constification of the BN library.
Diffstat (limited to 'crypto/bn/bn_lib.c')
-rw-r--r--crypto/bn/bn_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lib.c b/crypto/bn/bn_lib.c
index 0ad62652f6..130a9e2db4 100644
--- a/crypto/bn/bn_lib.c
+++ b/crypto/bn/bn_lib.c
@@ -792,7 +792,7 @@ int BN_mask_bits(BIGNUM *a, int n)
return(1);
}
-int bn_cmp_words(BN_ULONG *a, BN_ULONG *b, int n)
+int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n)
{
int i;
BN_ULONG aa,bb;