diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2016-11-19 17:10:35 +0100 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2016-12-03 00:14:14 +0100 |
commit | f3e911d5ed16db6a129306675e20e51d1ee81e1a (patch) | |
tree | b252ec0a8a29d5cbf24288a58dd7e7cd82664bb1 /fuzz/asn1.c | |
parent | 82cb311fa0e1096bc6840fd92973d9b418ff5dde (diff) | |
download | openssl-new-f3e911d5ed16db6a129306675e20e51d1ee81e1a.tar.gz |
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #2023
Diffstat (limited to 'fuzz/asn1.c')
-rw-r--r-- | fuzz/asn1.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fuzz/asn1.c b/fuzz/asn1.c index 5125f363ff..0644ed79e1 100644 --- a/fuzz/asn1.c +++ b/fuzz/asn1.c @@ -183,11 +183,13 @@ static ASN1_ITEM_EXP *item_type[] = { NULL }; -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) +{ int n; ASN1_PCTX *pctx = ASN1_PCTX_new(); |