diff options
author | François Perrad <francois.perrad@gadz.org> | 2018-03-03 04:06:45 +0100 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2018-03-03 11:06:45 +0800 |
commit | 257bba00ac1c1461b18ff1f5d420ec83fa13a368 (patch) | |
tree | 8156f6443adbd45eacfa1059c358baf6be0708ee /fuzz-wrapfd.c | |
parent | ce1f9cdf7c27bb877d8efd3048af6e5ea513d09a (diff) |
some linting after fuzz merge (#60)
* fix prototype
* remove extra comma
* use m_free after m_strdup
Diffstat (limited to 'fuzz-wrapfd.c')
-rw-r--r-- | fuzz-wrapfd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz-wrapfd.c b/fuzz-wrapfd.c index 6472189..39d2b62 100644 --- a/fuzz-wrapfd.c +++ b/fuzz-wrapfd.c @@ -26,7 +26,7 @@ static int wrap_used[IOWRAP_MAXFD+1]; static unsigned int nused; static unsigned short rand_state[3]; -void wrapfd_setup() { +void wrapfd_setup(void) { TRACE(("wrapfd_setup")) nused = 0; memset(wrap_fds, 0x0, sizeof(wrap_fds)); |