From 0bde1089f895718db2fe2637fda4a0c2ed6df904 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Tue, 1 Feb 2000 23:47:24 +0000 Subject: [PATCH] match the prototype --- crypto/bn/bn_div.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crypto/bn/bn_div.c b/crypto/bn/bn_div.c index f15eced0cf..d8c31e1db0 100644 --- a/crypto/bn/bn_div.c +++ b/crypto/bn/bn_div.c @@ -63,7 +63,8 @@ /* The old slow way */ #if 0 -int BN_div(BIGNUM *dv, BIGNUM *rem, BIGNUM *m, BIGNUM *d, BN_CTX *ctx) +int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, + BN_CTX *ctx) { int i,nm,nd; BIGNUM *D; -- 2.34.1