diff options
author | hexcoder- <heiko@hexco.de> | 2021-01-18 21:36:19 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-01-18 21:36:19 +0100 |
commit | e2d9dc16e3d856b416aa7c84bf10242334c860c9 (patch) | |
tree | 7911fb07d921e8b350d29c0b0ed67b9dd3fefcf4 | |
parent | d36af0d576e579b1224b5e27152fa8ec6a8e12bb (diff) | |
download | afl++-e2d9dc16e3d856b416aa7c84bf10242334c860c9.tar.gz |
fix compiler warning avoid signess difference in comparisons
-rw-r--r-- | include/config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/config.h b/include/config.h index c0cd0ef1..973bbcbb 100644 --- a/include/config.h +++ b/include/config.h @@ -194,7 +194,7 @@ /* The same, for the test case minimizer: */ -#define TMIN_MAX_FILE (10 * 1024 * 1024U) +#define TMIN_MAX_FILE (10 * 1024 * 1024) /* Block normalization steps for afl-tmin: */ |