From 30cf91784bfde82622f79d87d17d20ce73329532 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Sat, 13 Jun 2015 13:13:55 +0200 Subject: [PATCH] Remove one extraneous parenthesis Reviewed-by: Kurt Roeckx --- include/openssl/bio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.34.1