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 /test/uitest.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 'test/uitest.c')
-rw-r--r-- | test/uitest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/uitest.c b/test/uitest.c index 9013126f73..8659b0b4be 100644 --- a/test/uitest.c +++ b/test/uitest.c @@ -37,7 +37,7 @@ static int test_old(void) int ok = 0; if (!TEST_ptr(ui_method = - UI_UTIL_wrap_read_pem_callback( test_pem_password_cb, 0)) + UI_UTIL_wrap_read_pem_callback(test_pem_password_cb, 0)) || !TEST_ptr(ui = UI_new_method(ui_method))) goto err; |