diff options
author | Amit Elkabetz <12958411+amitelka@users.noreply.github.com> | 2023-03-05 20:44:18 +0200 |
---|---|---|
committer | Amit Elkabetz <12958411+amitelka@users.noreply.github.com> | 2023-03-05 20:44:18 +0200 |
commit | 7034348c577226f60fc6dbd912ec72d164cce829 (patch) | |
tree | 1413cc86e72c831ebfcd4bae099bdb16933df709 | |
parent | e9e440d7f33a61793c63f90f9555ff3c0f45b3b4 (diff) | |
download | afl++-7034348c577226f60fc6dbd912ec72d164cce829.tar.gz |
Changed warning message to use const instead of magic
-rw-r--r-- | src/afl-fuzz-state.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-fuzz-state.c b/src/afl-fuzz-state.c index 8964f38e..58a69b60 100644 --- a/src/afl-fuzz-state.c +++ b/src/afl-fuzz-state.c @@ -578,7 +578,8 @@ void read_afl_environment(afl_state_t *afl, char **envp) { WARNF( "Incorrect value given to AFL_FUZZER_STATS_UPDATE_INTERVAL, " - "using default of 60 seconds\n"); + "using default of %d seconds\n", + STATS_UPDATE_SEC); } else { |