From 5a8a8acf59aeb04ec503aa453c7ce9aa02f3c340 Mon Sep 17 00:00:00 2001 From: rish9101 Date: Mon, 28 Sep 2020 08:25:52 +0530 Subject: [PATCH] Move Usage message to fatal --- examples/libaflfuzzer.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/libaflfuzzer.c b/examples/libaflfuzzer.c index 0f69f11..c6676f0 100644 --- a/examples/libaflfuzzer.c +++ b/examples/libaflfuzzer.c @@ -805,8 +805,7 @@ int main(int argc, char **argv) { if (argc < 4) { - SAYF("Usage: %s number_of_threads /path/to/input/dir /path/to/queue/dir", argv[0]); - exit(0); + FATAL("Usage: %s number_of_threads /path/to/input/dir /path/to/queue/dir", argv[0]); }