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/apps/errstr.c b/apps/errstr.c index a02fa68..324e6e4 100644 --- a/apps/errstr.c +++ b/apps/errstr.c
@@ -62,5 +62,5 @@ } } end: - return (ret); + return ret; }