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:13:48 +0000 (13:13 +0200)
Reviewed-by: Kurt Roeckx <kurt@openssl.org>
(cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532)

crypto/bio/bio.h

index 7878fb1984f2415b3e7c7b74c5fed69ec016ab2a..f78796b069f54714729cbf8838b4d254d9b27c14 100644 (file)
@@ -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)