aboutsummaryrefslogtreecommitdiff
path: root/include/config.h
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2021-01-18 21:36:19 +0100
committerhexcoder- <heiko@hexco.de>2021-01-18 21:36:19 +0100
commite2d9dc16e3d856b416aa7c84bf10242334c860c9 (patch)
tree7911fb07d921e8b350d29c0b0ed67b9dd3fefcf4 /include/config.h
parentd36af0d576e579b1224b5e27152fa8ec6a8e12bb (diff)
downloadAFLplusplus-e2d9dc16e3d856b416aa7c84bf10242334c860c9.tar.gz
fix compiler warning avoid signess difference in comparisons
Diffstat (limited to 'include/config.h')
-rw-r--r--include/config.h2
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: */