summaryrefslogtreecommitdiffstats
path: root/include
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:10:24 +0200
commit30cf91784bfde82622f79d87d17d20ce73329532 (patch)
treede77532f0a2e33f89f41f0a38ffe976e594a272c /include
parent3b061a00e39d2e4ad524ff01cbdc0c53fe8171ee (diff)
Remove one extraneous parenthesis
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index e224dd9458..7fe88ec4ef 100644
--- a/include/openssl/bio.h
+++ b/include/openssl/bio.h
@@ -276,7 +276,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)