]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - oggdec.c
gcc-compat.h: rename __unused to __a_unused
[paraslash.git] / oggdec.c
index 714d620e7adb06a414e5eba3a0d3fe55cef476b8..b1ddd975c065839edfbd146d7c37c47b3a99438b 100644 (file)
--- 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;
 }