commit | 26a7d938c9bf932a55cb5e4e02abb48fe395c5cd | [log] [tgz] |
---|---|---|
author | KaoruToda <kunnpuu@gmail.com> | Tue Oct 17 23:04:09 2017 +0900 |
committer | Matt Caswell <matt@openssl.org> | Wed Oct 18 16:05:06 2017 +0100 |
tree | ce5b1908c181722514aa80d03026c6f42ab85972 | |
parent | 2139145b72d084a3f974a94accd7d9812de286e4 [diff] [blame] |
Remove parentheses of return. Since return is inconsistent, I removed unnecessary parentheses and unified them. Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4541)
diff --git a/crypto/dllmain.c b/crypto/dllmain.c index b0459c2..81bcb2d 100644 --- a/crypto/dllmain.c +++ b/crypto/dllmain.c
@@ -55,7 +55,7 @@ case DLL_PROCESS_DETACH: break; } - return (TRUE); + return TRUE; } #endif