From 8bd108a0042a75cca34de4f803f6aa62299d0463 Mon Sep 17 00:00:00 2001 From: Mouse Date: Sun, 8 Oct 2017 22:47:02 -0400 Subject: [PATCH] Fix parameter name, for common aesthetics and to silence IDE warnings. CLA: trivial Reviewed-by: Rich Salz Reviewed-by: Richard Levitte Reviewed-by: Ben Kaduk (Merged from https://github.com/openssl/openssl/pull/4494) --- include/openssl/bn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/openssl/bn.h b/include/openssl/bn.h index 17bd52136c..54ae760152 100644 --- a/include/openssl/bn.h +++ b/include/openssl/bn.h @@ -196,7 +196,7 @@ int BN_sqr(BIGNUM *r, const BIGNUM *a, BN_CTX *ctx); */ void BN_set_negative(BIGNUM *b, int n); /** BN_is_negative returns 1 if the BIGNUM is negative - * \param a pointer to the BIGNUM object + * \param b pointer to the BIGNUM object * \return 1 if a < 0 and 0 otherwise */ int BN_is_negative(const BIGNUM *b); -- 2.25.1