diff options
author | Edward J. Schwartz <moo.github.domain.edmcman@xoxy.net> | 2022-10-18 12:55:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 18:55:59 +0200 |
commit | 23580e2cb6f6f92741190e1757f5020e9cd9cc88 (patch) | |
tree | 798bea6b153782ff15c1da356f8474e47fff515b | |
parent | 089e773d1e673096cf261086ab978e0c95a35bbe (diff) | |
download | afl++-23580e2cb6f6f92741190e1757f5020e9cd9cc88.tar.gz |
Fix afl-showmap usage output (#1560)
-rw-r--r-- | src/afl-showmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index 0b724758..b2bf91aa 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -822,8 +822,8 @@ static void usage(u8 *argv0) { " -o file - file to write the trace data to\n\n" "Execution control settings:\n" - " -t msec - timeout for each run (none)\n" - " -m megs - memory limit for child process (%u MB)\n" + " -t msec - timeout for each run (1000)\n" + " -m megs - memory limit for child process (none)\n" #if defined(__linux__) && defined(__aarch64__) " -A - use binary-only instrumentation (ARM CoreSight mode)\n" #endif |