From: Richard Levitte Date: Sat, 13 Jun 2015 11:13:55 +0000 (+0200) Subject: Remove one extraneous parenthesis X-Git-Tag: OpenSSL_1_1_0-pre1~988 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=30cf91784bfde82622f79d87d17d20ce73329532;p=openssl Remove one extraneous parenthesis Reviewed-by: Kurt Roeckx --- 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)