diff options
author | willmafh <willmafh@hotmail.com> | 2024-12-03 06:08:55 +0100 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2024-12-06 15:26:27 +0100 |
commit | c77d9fcf8ea847220990847e05b8d7b1d40e540c (patch) | |
tree | bf6be48bd1f1983313bec9ea9df8ac5048d08a44 /crypto | |
parent | Delete a redundant break (diff) | |
download | openssl-c77d9fcf8ea847220990847e05b8d7b1d40e540c.tar.xz openssl-c77d9fcf8ea847220990847e05b8d7b1d40e540c.zip |
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)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bio/bss_mem.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |