diff options
author | hexcoder- <heiko@hexco.de> | 2020-10-15 23:30:55 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-10-15 23:30:55 +0200 |
commit | fffe53136cae30316db1578b3d7f09fca3b5bc47 (patch) | |
tree | 164c459249735d1a259b4fe4578c19daeffb05b4 /src/afl-performance.c | |
parent | bded51e4eaaa4148516a407b68264e424d0fbbd5 (diff) | |
parent | 190a9cf1e4e6cd08f83acbb9d893688b5fb00f3d (diff) | |
download | afl++-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.c | 2 |
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); } |