From 197df84b25e18bf8e0394058412caabf23b5b6ff Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 15 Jun 2016 01:06:01 -0700 Subject: [PATCH] Add UNUSED() macro to ux_audio_none.c. --- src/curses/ux_audio_none.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/curses/ux_audio_none.c b/src/curses/ux_audio_none.c index fd58864..5711e6d 100644 --- a/src/curses/ux_audio_none.c +++ b/src/curses/ux_audio_none.c @@ -51,7 +51,7 @@ void os_init_sound(void) * */ -void os_beep (int number) +void os_beep (int UNUSED(number)) { beep(); @@ -65,7 +65,7 @@ void os_beep (int number) * */ -void os_prepare_sample (int number) +void os_prepare_sample (int UNUSED(number)) { /* Not implemented */ @@ -84,7 +84,7 @@ void os_prepare_sample (int number) * */ -void os_start_sample (int number, int volume, int repeats, zword eos) +void os_start_sample (int UNUSED(number), int UNUSED(volume), int UNUSED(repeats), zword UNUSED(eos)) { /* Not implemented */ @@ -98,7 +98,7 @@ void os_start_sample (int number, int volume, int repeats, zword eos) * */ -void os_stop_sample (int number) +void os_stop_sample (int UNUSED(number)) { /* Not implemented */ @@ -112,7 +112,7 @@ void os_stop_sample (int number) * */ -void os_finish_with_sample (number) +void os_finish_with_sample (int UNUSED(number)) { /* Not implemented */ -- 2.34.1