From aa3856261d90d996a298704f1d3706ef1c6787cd Mon Sep 17 00:00:00 2001 From: van Hauser Date: Thu, 23 Jul 2020 17:17:44 +0200 Subject: fix warning --- custom_mutators/honggfuzz/input.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'custom_mutators') 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; } -- cgit 1.4.1