From 3bf9adaa2ba3456b90c01ac719edc566f8bb3037 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 (cherry picked from commit 30cf91784bfde82622f79d87d17d20ce73329532) --- crypto/bio/bio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h index 7878fb1984..f78796b069 100644 --- a/crypto/bio/bio.h +++ b/crypto/bio/bio.h @@ -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) -- 2.25.1