summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMouse <mouse008@gmail.com>2017-10-08 22:47:02 -0400
committerBen Kaduk <kaduk@mit.edu>2017-10-09 09:52:28 -0500
commit8bd108a0042a75cca34de4f803f6aa62299d0463 (patch)
treea0245eed17122c56c0ad7970e944f4baa816e7fd /include
parent125993dee9f7e7361dd7dcf75ddb34050a78d973 (diff)
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)
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bn.h2
1 files changed, 1 insertions, 1 deletions
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);