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 /fuzz | |
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 'fuzz')
-rw-r--r-- | fuzz/server.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fuzz/server.c b/fuzz/server.c index e481e5621c..2ae714e1e6 100644 --- a/fuzz/server.c +++ b/fuzz/server.c @@ -625,8 +625,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) OPENSSL_assert((size_t)BIO_write(in, buf, len) == len); - if ((opt & 0x01) != 0) - { + if ((opt & 0x01) != 0) { do { char early_buf[16384]; size_t early_len; |