From: willmafh Date: Tue, 3 Dec 2024 05:08:55 +0000 (+0800) Subject: Delete redundant parentheses for code consistency X-Git-Tag: openssl-3.5.0-alpha1~853 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c77d9fcf8ea847220990847e05b8d7b1d40e540c;p=thirdparty%2Fopenssl.git 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) --- diff --git a/crypto/bio/bss_mem.c b/crypto/bio/bss_mem.c index 6deacba42db..8cbea38a902 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)