summaryrefslogtreecommitdiffstats
path: root/fuzz/ct.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/ct.c
parent82cb311fa0e1096bc6840fd92973d9b418ff5dde (diff)
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
Diffstat (limited to 'fuzz/ct.c')
-rw-r--r--fuzz/ct.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fuzz/ct.c b/fuzz/ct.c
index 411ccef4a0..636b195109 100644
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
@@ -16,11 +16,13 @@
#include <openssl/ct.h>
#include "fuzzer.h"
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
return 1;
}
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
const uint8_t **pp = &buf;
unsigned char *der = NULL;
STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len);