Remove one extraneous parenthesis
authorRichard Levitte <levitte@openssl.org>
Sat, 13 Jun 2015 11:13:55 +0000 (13:13 +0200)
committerRichard Levitte <levitte@openssl.org>
Tue, 16 Jun 2015 11:14:09 +0000 (13:14 +0200)
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
(cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532)

crypto/bio/bio.h

index be9cd0eff39b58eaf6afadb2a0c8eb7e9058016e..d583cc10850869fe8e0796d38412073415c9712f 100644 (file)
@@ -290,7 +290,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)