diff options
Diffstat (limited to 'test')
-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; } + |