summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-11-17 08:36:10 +0000
committerBodo Möller <bodo@openssl.org>2000-11-17 08:36:10 +0000
commit28fd5c60deda00db51a3ada467aee6c565f416a2 (patch)
tree7e8e54726ae8d437563c7dd9e6ca07250b7898f3 /crypto
parentcbd48ba626845170ee2b70774e881a4b50a7369d (diff)
Constify bn_dump1 implementation so that it matches the prototype
in bn.h
Diffstat (limited to 'crypto')
-rw-r--r--crypto/bn/bn_print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_print.c b/crypto/bn/bn_print.c
index 532e66bcc3..d1986d72d0 100644
--- a/crypto/bn/bn_print.c
+++ b/crypto/bn/bn_print.c
@@ -321,7 +321,7 @@ end:
#endif
#ifdef BN_DEBUG
-void bn_dump1(FILE *o, const char *a, BN_ULONG *b,int n)
+void bn_dump1(FILE *o, const char *a, const BN_ULONG *b,int n)
{
int i;
fprintf(o, "%s=", a);