about summary refs log tree commit diff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorDominik Maier <domenukk@gmail.com>2020-03-31 03:22:46 +0200
committerDominik Maier <domenukk@gmail.com>2020-04-01 13:10:07 +0200
commit42ee300e92c0d3f7bba6f4f015353bd5ff6839c5 (patch)
tree6c48ca2fe5d8d58c34f15b084e88682c90df7c18 /include/afl-fuzz.h
parent582f5103d92dd8b7da1742c86d22f6b191743b6f (diff)
downloadafl++-42ee300e92c0d3f7bba6f4f015353bd5ff6839c5.tar.gz
dropped make switches
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h2
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)