From 1bbc7879b3a8c567a314ecb6d891854abee08131 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Wed, 17 Aug 2005 18:08:15 +0000 Subject: [PATCH] Fix compile warnings Fixed compile warnings (unused parameters). --- alsa/stdioemu.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/alsa/stdioemu.c b/alsa/stdioemu.c index bf1bb5e..54e46f6 100644 --- a/alsa/stdioemu.c +++ b/alsa/stdioemu.c @@ -55,7 +55,9 @@ static ssize_t fdc_write (void *cookie, const char *buffer, size_t size) return write(fdc->fd, buffer, size); } -static int fdc_seek (void* cookie, off64_t* position, int whence) +static int fdc_seek (void* cookie ATTRIBUTE_UNUSED, + off64_t* position ATTRIBUTE_UNUSED, + int whence ATTRIBUTE_UNUSED) { return -1; } -- 2.47.1