summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_print.c
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-06-05 12:16:33 +0000
committerBen Laurie <ben@openssl.org>1999-06-05 12:16:33 +0000
commit8d8a8041ecd1b93e3279a31c404bbde15ba2b710 (patch)
tree5f9c238be3ad0b011031d0836ae245edff83ad19 /crypto/bn/bn_print.c
parent3cbb7937fa9ab7cbdab57ff37575d223b6153ec2 (diff)
const/type fixes.
Diffstat (limited to 'crypto/bn/bn_print.c')
-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 f2d2fce589..8b349b52d4 100644
--- a/crypto/bn/bn_print.c
+++ b/crypto/bn/bn_print.c
@@ -294,7 +294,7 @@ int BN_print_fp(FILE *fp, BIGNUM *a)
}
#endif
-int BN_print(BIO *bp, BIGNUM *a)
+int BN_print(BIO *bp, const BIGNUM *a)
{
int i,j,v,z=0;
int ret=0;