diff options
author | x2018 <xkernel.wang@foxmail.com> | 2021-10-26 09:16:18 +0200 |
---|---|---|
committer | Pauli <pauli@openssl.org> | 2021-10-28 05:10:46 +0200 |
commit | 1287dabd0b23326be491125698dd982e4ae28887 (patch) | |
tree | 3d6a62803bdd3d8ca9378eda3e7316a9c995c001 /apps/dgst.c | |
parent | Configurations/windows-makefile.tmpl: obj2bin(): use the resource file too (diff) | |
download | openssl-1287dabd0b23326be491125698dd982e4ae28887.tar.xz openssl-1287dabd0b23326be491125698dd982e4ae28887.zip |
fix some code with obvious wrong coding style
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16918)
Diffstat (limited to 'apps/dgst.c')
-rw-r--r-- | apps/dgst.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dgst.c b/apps/dgst.c index bd23b76996..e75dd72521 100644 --- a/apps/dgst.c +++ b/apps/dgst.c @@ -503,7 +503,7 @@ static const char *newline_escape_filename(const char *file, int * backslash) file_cpy = app_malloc(mem_len, file); i = 0; - while(e < length) { + while (e < length) { const char c = file[e]; if (c == '\n') { file_cpy[i++] = '\\'; |