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

crypto/bio/bio.h

index 73e8c78beaaf1be74e55d22198992c1d364ca064..8f79c292738a49dc254a403ef7785afa5498cfdd 100644 (file)
@@ -263,7 +263,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)