summaryrefslogtreecommitdiff
path: root/fuzz/driver.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-11-19 17:10:35 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-12-03 00:14:14 +0100
commitf3e911d5ed16db6a129306675e20e51d1ee81e1a (patch)
treeb252ec0a8a29d5cbf24288a58dd7e7cd82664bb1 /fuzz/driver.c
parent82cb311fa0e1096bc6840fd92973d9b418ff5dde (diff)
downloadopenssl-new-f3e911d5ed16db6a129306675e20e51d1ee81e1a.tar.gz
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
Diffstat (limited to 'fuzz/driver.c')
-rw-r--r--fuzz/driver.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzz/driver.c b/fuzz/driver.c
index c530fedc84..2c16a5e2e6 100644
--- a/fuzz/driver.c
+++ b/fuzz/driver.c
@@ -22,7 +22,8 @@ int LLVMFuzzerInitialize(int *argc, char ***argv)
return 0;
}
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
return FuzzerTestOneInput(buf, len);
}