diff options
author | Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> | 2023-09-13 20:32:54 +0200 |
---|---|---|
committer | Neil Horman <nhorman@openssl.org> | 2024-07-22 12:55:35 +0200 |
commit | 962431d58bdf7fcdb3db11f17cea878b83292243 (patch) | |
tree | 1e52d31bf7605b773c7882fa25a82ab8f4a4d3ff /test/sslbuffertest.c | |
parent | Remove trailing whitespace (diff) | |
download | openssl-962431d58bdf7fcdb3db11f17cea878b83292243.tar.xz openssl-962431d58bdf7fcdb3db11f17cea878b83292243.zip |
that open brace { should be on the previous line
Found by running the checkpatch.pl Linux script to enforce coding style.
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/22097)
Diffstat (limited to 'test/sslbuffertest.c')
-rw-r--r-- | test/sslbuffertest.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/sslbuffertest.c b/test/sslbuffertest.c index ee58574230..9ee4cb9a41 100644 --- a/test/sslbuffertest.c +++ b/test/sslbuffertest.c @@ -140,8 +140,7 @@ static int test_func(int test) * bytes from the record header/padding etc. */ for (ret = -1, i = 0, len = 0; len != sizeof(testdata) && - i < MAX_ATTEMPTS; i++) - { + i < MAX_ATTEMPTS; i++) { if (test >= 5 && (!TEST_true(SSL_free_buffers(serverssl)) || !TEST_true(checkbuffers(serverssl, 0)))) goto end; |