]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Delete redundant parentheses for code consistency
authorwillmafh <willmafh@hotmail.com>
Tue, 3 Dec 2024 05:08:55 +0000 (13:08 +0800)
committerTomas Mraz <tomas@openssl.org>
Fri, 6 Dec 2024 14:26:27 +0000 (15:26 +0100)
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)

crypto/bio/bss_mem.c

index 6deacba42db7121c65c5f3e140a33600effc0c57..8cbea38a9021a3ab09d73f617ee20f51872f17ad 100644 (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)