Fix formatting of fuzzers

Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #2023
diff --git a/fuzz/driver.c b/fuzz/driver.c
index c530fed..2c16a5e 100644
--- a/fuzz/driver.c
+++ b/fuzz/driver.c
@@ -22,7 +22,8 @@
     return 0;
 }
 
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     return FuzzerTestOneInput(buf, len);
 }