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/modes_internal_test.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/modes_internal_test.c')
-rw-r--r-- | test/modes_internal_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/modes_internal_test.c b/test/modes_internal_test.c index 32fb756060..7ba4b98372 100644 --- a/test/modes_internal_test.c +++ b/test/modes_internal_test.c @@ -869,7 +869,7 @@ static int test_gcm128(int idx) if (A.data != NULL) CRYPTO_gcm128_aad(&ctx, A.data, A.size); if (P.data != NULL) - if (!TEST_int_ge(CRYPTO_gcm128_encrypt( &ctx, P.data, out, P.size), 0)) + if (!TEST_int_ge(CRYPTO_gcm128_encrypt(&ctx, P.data, out, P.size), 0)) return 0; if (!TEST_false(CRYPTO_gcm128_finish(&ctx, T.data, 16)) || (C.data != NULL |