diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-03-31 03:22:46 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:07 +0200 |
commit | 42ee300e92c0d3f7bba6f4f015353bd5ff6839c5 (patch) | |
tree | 6c48ca2fe5d8d58c34f15b084e88682c90df7c18 /include/afl-fuzz.h | |
parent | 582f5103d92dd8b7da1742c86d22f6b191743b6f (diff) | |
download | afl++-42ee300e92c0d3f7bba6f4f015353bd5ff6839c5.tar.gz |
dropped make switches
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index fcbc09e5..e750d7c9 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -967,7 +967,7 @@ static inline u32 get_rand_seed(afl_state_t *afl) { /* Find first power of two greater or equal to val (assuming val under 2^63). */ -static u64 next_p2(u64 val) { +static inline u64 next_p2(u64 val) { u64 ret = 1; while (val > ret) |