From: Richard Levitte Date: Sat, 13 Jun 2015 11:13:55 +0000 (+0200) Subject: Remove one extraneous parenthesis X-Git-Tag: OpenSSL_1_0_1p~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=a5d8c1c291293105f1c4b0336c0569d25b2b468d;p=oweals%2Fopenssl.git Remove one extraneous parenthesis Reviewed-by: Kurt Roeckx (cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532) --- diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h index be9cd0eff3..d583cc1085 100644 --- a/crypto/bio/bio.h +++ b/crypto/bio/bio.h @@ -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)