From c77d9fcf8ea847220990847e05b8d7b1d40e540c Mon Sep 17 00:00:00 2001 From: willmafh Date: Tue, 3 Dec 2024 13:08:55 +0800 Subject: Delete redundant parentheses for code consistency CLA: trivial Reviewed-by: Tom Cosgrove Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/26095) --- crypto/bio/bss_mem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto') diff --git a/crypto/bio/bss_mem.c b/crypto/bio/bss_mem.c index 6deacba42d..8cbea38a90 100644 --- a/crypto/bio/bss_mem.c +++ b/crypto/bio/bss_mem.c @@ -76,7 +76,7 @@ const BIO_METHOD *BIO_s_mem(void) const BIO_METHOD *BIO_s_secmem(void) { - return(&secmem_method); + return &secmem_method; } BIO *BIO_new_mem_buf(const void *buf, int len) -- cgit v1.2.3