diff options
author | hexcoder- <heiko@hexco.de> | 2019-08-12 10:52:45 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2019-08-12 10:52:45 +0200 |
commit | 925cfba424095a70e8476dfe25a94704639fc597 (patch) | |
tree | 72f8b9ea1c17eb86f9b79b744f0ba608490d3e40 /afl-tmin.c | |
parent | f63318a20f5ed974de5f8068a67d1292c64ca776 (diff) | |
download | afl++-925cfba424095a70e8476dfe25a94704639fc597.tar.gz |
signedness in print formats corrected
Diffstat (limited to 'afl-tmin.c')
-rw-r--r-- | afl-tmin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/afl-tmin.c b/afl-tmin.c index 4989d7ce..09ce8c62 100644 --- a/afl-tmin.c +++ b/afl-tmin.c @@ -896,8 +896,8 @@ static void usage(u8* argv0) { "Execution control settings:\n\n" " -f file - input file read by the tested program (stdin)\n" - " -t msec - timeout for each run (%u ms)\n" - " -m megs - memory limit for child process (%u MB)\n" + " -t msec - timeout for each run (%d ms)\n" + " -m megs - memory limit for child process (%d MB)\n" " -Q - use binary-only instrumentation (QEMU mode)\n" " -U - use Unicorn-based instrumentation (Unicorn mode)\n\n" " (Not necessary, here for consistency with other afl-* tools)\n\n" |