summaryrefslogtreecommitdiffstats
path: root/crypto/bio
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-06-13 13:13:55 +0200
committerRichard Levitte <levitte@openssl.org>2015-06-16 13:13:48 +0200
commit3bf9adaa2ba3456b90c01ac719edc566f8bb3037 (patch)
treec2064f2b942262ae4037ded0c460d594e1097bec /crypto/bio
parent54ae378c9ea0a68fbdada833f6e2dd857bcecd65 (diff)
Remove one extraneous parenthesis
Reviewed-by: Kurt Roeckx <kurt@openssl.org> (cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532)
Diffstat (limited to 'crypto/bio')
-rw-r--r--crypto/bio/bio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index 7878fb1984..f78796b069 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -291,7 +291,7 @@ void BIO_clear_flags(BIO *b, int flags);
* BIO_CB_RETURN flag indicates if it is after the call
*/
# define BIO_CB_RETURN 0x80
-# define BIO_CB_return(a) ((a)|BIO_CB_RETURN))
+# define BIO_CB_return(a) ((a)|BIO_CB_RETURN)
# define BIO_cb_pre(a) (!((a)&BIO_CB_RETURN))
# define BIO_cb_post(a) ((a)&BIO_CB_RETURN)