diff options
author | van Hauser <vh@thc.org> | 2020-05-09 11:35:54 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-05-09 11:35:54 +0200 |
commit | fa84e52af0cf1869a8abbff2f48a9c55e2d447d4 (patch) | |
tree | 3b6c6a565a8b39c88c14f1e30134268606a6915d /test/test-multiple-mutators.c | |
parent | cf9238e09d74791c93a3a50ef2460d96529bcfa1 (diff) | |
download | afl++-fa84e52af0cf1869a8abbff2f48a9c55e2d447d4.tar.gz |
custom mutator code enhancements and code-format
Diffstat (limited to 'test/test-multiple-mutators.c')
-rw-r--r-- | test/test-multiple-mutators.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/test/test-multiple-mutators.c b/test/test-multiple-mutators.c index 35e0407b..0f6f5c64 100644 --- a/test/test-multiple-mutators.c +++ b/test/test-multiple-mutators.c @@ -9,16 +9,16 @@ #include <string.h> #include <unistd.h> -int main(int argc, char ** argv) -{ - int a=0; - char s[16]; - memset(s, 0, 16); - read(0, s, 0xa0); +int main(int argc, char **argv) { - if ( s[17] != '\x00') { - abort(); - } + int a = 0; + char s[16]; + memset(s, 0, 16); + read(0, s, 0xa0); + + if (s[17] != '\x00') { abort(); } + + return 0; - return 0; } + |