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-showmap.c | |
parent | d668f9697cc44a58ca38b42d99aa5143b13b703d (diff) | |
download | afl++-e80131bef50d343e71a08cdf6ae1aa57b4475867.tar.gz |
fix some compiler warnings in 32-bit linux
Diffstat (limited to 'src/afl-showmap.c')
-rw-r--r-- | src/afl-showmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index e143371e..75b0ff99 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -413,7 +413,7 @@ static u32 read_file(u8 *in_file) { if (!be_quiet && !quiet_mode) { - WARNF("Input file '%s' is too large, only reading %u bytes.", in_file, + WARNF("Input file '%s' is too large, only reading %ld bytes.", in_file, MAX_FILE); } |