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/bndiv.c | |
parent | Fix a typo in bio_read_intern (diff) | |
download | openssl-f3e911d5ed16db6a129306675e20e51d1ee81e1a.tar.xz openssl-f3e911d5ed16db6a129306675e20e51d1ee81e1a.zip |
Fix formatting of fuzzers
Reviewed-by: Rich Salz <rsalz@openssl.org>
GH: #2023
Diffstat (limited to 'fuzz/bndiv.c')
-rw-r--r-- | fuzz/bndiv.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fuzz/bndiv.c b/fuzz/bndiv.c index 45a3937992..9319878607 100644 --- a/fuzz/bndiv.c +++ b/fuzz/bndiv.c @@ -17,11 +17,13 @@ #include <openssl/bn.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) +{ static BN_CTX *ctx; static BIGNUM *b1; static BIGNUM *b2; |