diff options
author | KaoruToda <kunnpuu@gmail.com> | 2017-10-09 13:05:58 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-10-09 14:17:09 +0200 |
commit | 208fb891e36f16d20262710c70ef0ff3df0e885c (patch) | |
tree | 514e6161c7c21122fced736efaddd87f5b5e0538 /apps/openssl.c | |
parent | Document that lhash isn't thread safe under any circumstances and (diff) | |
download | openssl-208fb891e36f16d20262710c70ef0ff3df0e885c.tar.xz openssl-208fb891e36f16d20262710c70ef0ff3df0e885c.zip |
Since return is inconsistent, I removed unnecessary parentheses and
unified them.
- return (0); -> return 0;
- return (1); -> return 1;
- return (-1); -> return -1;
Reviewed-by: Stephen Henson <steve@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4500)
Diffstat (limited to 'apps/openssl.c')
-rw-r--r-- | apps/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/openssl.c b/apps/openssl.c index 3b347ba11e..402a818a83 100644 --- a/apps/openssl.c +++ b/apps/openssl.c @@ -571,7 +571,7 @@ static int do_cmd(LHASH_OF(FUNCTION) *prog, int argc, char *argv[]) BIO_printf(bio_err, "Invalid command '%s'; type \"help\" for a list.\n", argv[0]); - return (1); + return 1; } static void list_pkey(void) |