about summary refs log tree commit diff
path: root/src/afl-performance.c
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2020-10-15 23:30:55 +0200
committerhexcoder- <heiko@hexco.de>2020-10-15 23:30:55 +0200
commitfffe53136cae30316db1578b3d7f09fca3b5bc47 (patch)
tree164c459249735d1a259b4fe4578c19daeffb05b4 /src/afl-performance.c
parentbded51e4eaaa4148516a407b68264e424d0fbbd5 (diff)
parent190a9cf1e4e6cd08f83acbb9d893688b5fb00f3d (diff)
downloadafl++-fffe53136cae30316db1578b3d7f09fca3b5bc47.tar.gz
Merge branch 'dev' of https://github.com/AFLplusplus/AFLplusplus into dev
Diffstat (limited to 'src/afl-performance.c')
-rw-r--r--src/afl-performance.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-performance.c b/src/afl-performance.c
index 6fa95dea..e070a05e 100644
--- a/src/afl-performance.c
+++ b/src/afl-performance.c
@@ -71,7 +71,7 @@ inline uint64_t rand_next(afl_state_t *afl) {
 
 inline double rand_next_percent(afl_state_t *afl) {
 
-  return (double)(((double)rand_next(afl)) / (double) 0xffffffffffffffff);
+  return (double)(((double)rand_next(afl)) / (double)0xffffffffffffffff);
 
 }