X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=oggdec.c;h=b1ddd975c065839edfbd146d7c37c47b3a99438b;hb=e0e5a7c1a04c6a2ee4a475e823657e06e6df2f99;hp=714d620e7adb06a414e5eba3a0d3fe55cef476b8;hpb=e12d1bf20e91fe13be18d367557cd3a7014c4ea5;p=paraslash.git diff --git a/oggdec.c b/oggdec.c index 714d620e..b1ddd975 100644 --- a/oggdec.c +++ b/oggdec.c @@ -72,13 +72,13 @@ static size_t cb_read(void *buf, size_t size, size_t nmemb, void *datasource) * Since we want the data source to be treated as unseekable at all * times, the provided seek callback always returns -1 (failure). */ -static int cb_seek(__unused void *datasource, __unused ogg_int64_t offset, - __unused int whence) +static int cb_seek(__a_unused void *datasource, __a_unused ogg_int64_t offset, + __a_unused int whence) { return -1; } -static int cb_close(__unused void *datasource) +static int cb_close(__a_unused void *datasource) { return 0; }