about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-05-15 15:17:33 +0200
committervanhauser-thc <vh@thc.org>2023-05-15 15:17:33 +0200
commit9a55bbdb44c1508a0b08728db2dacaebc9c43277 (patch)
treeaef772850a4f6179bf986c181092fe68b14bd4d2
parentab148aeed81d755399e257c0c17fe4cbb9be3d48 (diff)
downloadafl++-9a55bbdb44c1508a0b08728db2dacaebc9c43277.tar.gz
fix
-rw-r--r--custom_mutators/aflpp/standalone/aflpp-standalone.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/custom_mutators/aflpp/standalone/aflpp-standalone.c b/custom_mutators/aflpp/standalone/aflpp-standalone.c
index 337b7937..91bac4a8 100644
--- a/custom_mutators/aflpp/standalone/aflpp-standalone.c
+++ b/custom_mutators/aflpp/standalone/aflpp-standalone.c
@@ -86,15 +86,13 @@ size_t afl_custom_fuzz(my_mutator_t *data, uint8_t *buf, size_t buf_size,
 int main(int argc, char *argv[]) {
 
   if (argc > 1 && strncmp(argv[1], "-h", 2) == 0) {
-  
-    printf("Syntax: $0 [-v] [inputfile [outputfile [splicefile]]]\n\n", argv[0]);
+    printf("Syntax: %s [-v] [inputfile [outputfile [splicefile]]]\n\n", argv[0]);
     printf("Reads a testcase from stdin when no input file (or '-') is specified,\n");
     printf("mutates according to AFL++'s mutation engine, and write to stdout when '-' or\n");
     printf("no output filename is given. As an optional third parameter you can give a file\n");
     printf("for splicing. Maximum input and output length is 1MB.\n");
-    printf("The -v verbose option prints debug output to stderr\n");
+    printf("The -v verbose option prints debug output to stderr.\n");
     return 0;
-  
   }
 
   FILE *in = stdin, *out = stdout, *splice = NULL;