Delete redundant parentheses for code consistency

CLA: trivial

Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26095)
This commit is contained in:
willmafh 2024-12-03 13:08:55 +08:00 committed by Tomas Mraz
parent 764a876b64
commit c77d9fcf8e

View File

@ -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)