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 /include/config.h | |
parent | d668f9697cc44a58ca38b42d99aa5143b13b703d (diff) | |
download | afl++-e80131bef50d343e71a08cdf6ae1aa57b4475867.tar.gz |
fix some compiler warnings in 32-bit linux
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/config.h b/include/config.h index da74989e..4630da0c 100644 --- a/include/config.h +++ b/include/config.h @@ -237,11 +237,11 @@ (note that if this value is changed, several areas in afl-cc.c, afl-fuzz.c and afl-fuzz-state.c have to be changed as well! */ -#define MAX_FILE (1 * 1024 * 1024U) +#define MAX_FILE (1 * 1024 * 1024L) /* The same, for the test case minimizer: */ -#define TMIN_MAX_FILE (10 * 1024 * 1024) +#define TMIN_MAX_FILE (10 * 1024 * 1024L) /* Block normalization steps for afl-tmin: */ |