diff options
author | vanhauser-thc <vh@thc.org> | 2023-05-23 14:41:59 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-05-23 14:41:59 +0200 |
commit | 501226c992e5c47672907c5dde7f968f4e8fb001 (patch) | |
tree | edd7bfd772e88007926fe378c515db1f81cc23fa | |
parent | 8985524d3a7e9991ededcd2e7f01a112b3107871 (diff) | |
download | afl++-501226c992e5c47672907c5dde7f968f4e8fb001.tar.gz |
correct rtn cmplog map size
-rw-r--r-- | include/cmplog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cmplog.h b/include/cmplog.h index 6e16e6b0..e4821444 100644 --- a/include/cmplog.h +++ b/include/cmplog.h @@ -34,7 +34,7 @@ #define CMP_MAP_W 65536 #define CMP_MAP_H 32 -#define CMP_MAP_RTN_H (CMP_MAP_H / 4) +#define CMP_MAP_RTN_H (CMP_MAP_H / 2) #define SHAPE_BYTES(x) (x + 1) |