From: Mouse <mouse008@gmail.com> Date: Mon, 9 Oct 2017 02:47:02 +0000 (-0400) Subject: Fix parameter name, for common aesthetics and to silence IDE warnings. X-Git-Tag: OpenSSL_1_1_0g~46 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8bd108a0042a75cca34de4f803f6aa62299d0463;p=oweals%2Fopenssl.git Fix parameter name, for common aesthetics and to silence IDE warnings. CLA: trivial Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Ben Kaduk <kaduk@mit.edu> (Merged from https://github.com/openssl/openssl/pull/4494) --- 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);