From f63318a20f5ed974de5f8068a67d1292c64ca776 Mon Sep 17 00:00:00 2001 From: hexcoder- Date: Sun, 11 Aug 2019 15:40:53 +0200 Subject: several code cleanups: avoid #if in macro parameters avoid arithmetic with void pointers (undefined behaviour) avoid some shadowed variables --- afl-analyze.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'afl-analyze.c') diff --git a/afl-analyze.c b/afl-analyze.c index 53b694ec..af93150e 100644 --- a/afl-analyze.c +++ b/afl-analyze.c @@ -738,8 +738,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" -- cgit 1.4.1