From d6a8f145c4a9f439ab676bc2db1bc6c3d763bb01 Mon Sep 17 00:00:00 2001 From: Karl Mikaelsson Date: Mon, 13 Nov 2017 17:00:53 +0100 Subject: [PATCH] Remove compiler warnings from rdpsnd_libao A couple of unused variables and a signed/unsigned fix. --- rdpsnd_libao.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/rdpsnd_libao.c b/rdpsnd_libao.c index 1642b13..ddf2eaf 100644 --- a/rdpsnd_libao.c +++ b/rdpsnd_libao.c @@ -41,6 +41,10 @@ void libao_play(void); void libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv) { + UNUSED(n); + UNUSED(rfds); + UNUSED(tv); + /* We need to be called rather often... */ if (o_device != NULL && !rdpsnd_queue_empty()) FD_SET(0, wfds); @@ -49,6 +53,9 @@ libao_add_fds(int *n, fd_set * rfds, fd_set * wfds, struct timeval *tv) void libao_check_fds(fd_set * rfds, fd_set * wfds) { + UNUSED(rfds); + UNUSED(wfds); + if (o_device == NULL) return; @@ -143,7 +150,7 @@ libao_play(void) STREAM out; int len; static long prev_s, prev_us; - unsigned int duration; + int duration; struct timeval tv; int next_tick;