aboutsummaryrefslogtreecommitdiff
path: root/custom_mutators
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-07-23 17:17:44 +0200
committervan Hauser <vh@thc.org>2020-07-23 17:17:44 +0200
commitaa3856261d90d996a298704f1d3706ef1c6787cd (patch)
treefb6a27e53db2b3914ecf8e6671a0ac3ea142508a /custom_mutators
parent72b46a07d6a64a7871f029330bcf5eae649c8eb1 (diff)
downloadAFLplusplus-aa3856261d90d996a298704f1d3706ef1c6787cd.tar.gz
fix warning
Diffstat (limited to 'custom_mutators')
-rw-r--r--custom_mutators/honggfuzz/input.h2
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;
}