diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2014-10-02 10:59:34 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2014-10-02 12:52:50 +0200 |
commit | 0479b44373892db273f3e0365c7cbaad2eeb0d5f (patch) | |
tree | bdce31c6a2f693e112fe62bd1146f7338cf56d64 /sysdep | |
parent | 7c00551749005ad951845eb924f76e1fd28e62a2 (diff) |
Fixes some warnings.
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/unix/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index a5477695..164038ec 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -1967,7 +1967,7 @@ io_loop(void) while (current_sock && count < MAX_RX_STEPS) { sock *s = current_sock; - int e; + int e UNUSED; if ((s->type < SK_MAGIC) && FD_ISSET(s->fd, &rd) && s->rx_hook) { |