diff options
author | hexcoder- <heiko@hexco.de> | 2021-10-02 22:47:22 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-10-02 22:47:22 +0200 |
commit | e80131bef50d343e71a08cdf6ae1aa57b4475867 (patch) | |
tree | d4f6a4a17a591031c1da76041ae75e20d0b61ee5 /src/afl-tmin.c | |
parent | d668f9697cc44a58ca38b42d99aa5143b13b703d (diff) | |
download | afl++-e80131bef50d343e71a08cdf6ae1aa57b4475867.tar.gz |
fix some compiler warnings in 32-bit linux
Diffstat (limited to 'src/afl-tmin.c')
-rw-r--r-- | src/afl-tmin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-tmin.c b/src/afl-tmin.c index dff51e84..4f3a6b80 100644 --- a/src/afl-tmin.c +++ b/src/afl-tmin.c @@ -221,7 +221,7 @@ static void read_initial_file(void) { if (st.st_size >= TMIN_MAX_FILE) { - FATAL("Input file is too large (%u MB max)", TMIN_MAX_FILE / 1024 / 1024); + FATAL("Input file is too large (%ld MB max)", TMIN_MAX_FILE / 1024 / 1024); } |