diff options
author | van Hauser <vh@thc.org> | 2020-07-23 17:17:44 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-07-23 17:17:44 +0200 |
commit | aa3856261d90d996a298704f1d3706ef1c6787cd (patch) | |
tree | fb6a27e53db2b3914ecf8e6671a0ac3ea142508a | |
parent | 72b46a07d6a64a7871f029330bcf5eae649c8eb1 (diff) | |
download | afl++-aa3856261d90d996a298704f1d3706ef1c6787cd.tar.gz |
fix warning
-rw-r--r-- | custom_mutators/honggfuzz/input.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom_mutators/honggfuzz/input.h b/custom_mutators/honggfuzz/input.h index c67d88a6..7b0c55ae 100644 --- a/custom_mutators/honggfuzz/input.h +++ b/custom_mutators/honggfuzz/input.h @@ -86,7 +86,7 @@ static inline size_t input_getRandomInputAsBuf(run_t *run, const uint8_t **buf) static inline void input_setSize(run_t* run, size_t sz) { run->dynfile->size = sz; } -static inline uint8_t util_turnToPrintable(uint8_t* buf, size_t sz) { +static inline void util_turnToPrintable(uint8_t* buf, size_t sz) { for (size_t i = 0; i < sz; i++) buf[i] = buf[i] % 95 + 32; } |