From: Bodo Möller Date: Fri, 17 Nov 2000 08:36:10 +0000 (+0000) Subject: Constify bn_dump1 implementation so that it matches the prototype X-Git-Tag: OpenSSL_0_9_6a-beta1~107^2~173 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=28fd5c60deda00db51a3ada467aee6c565f416a2;p=oweals%2Fopenssl.git Constify bn_dump1 implementation so that it matches the prototype in bn.h --- 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);