aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder/wavpack_plugin.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-01-01 18:09:24 +0100
committerMax Kellermann <max@duempel.org>2009-01-01 18:09:24 +0100
commit17bdcc8bae5af513b9b2902e90dfad4d7a0e7dfc (patch)
tree6cb5495417da4bf2ee80255443a3df8ba16e63a8 /src/decoder/wavpack_plugin.c
parent7dfe301b54c36ccd934246e81bde6b73e241f858 (diff)
downloadmpd-17bdcc8bae5af513b9b2902e90dfad4d7a0e7dfc.tar.gz
mpd-17bdcc8bae5af513b9b2902e90dfad4d7a0e7dfc.tar.xz
mpd-17bdcc8bae5af513b9b2902e90dfad4d7a0e7dfc.zip
decoder plugins: don't include gcc.h
Use GLib's G_GNUC_UNUSED instead of gcc.h's mpd_unused.
Diffstat (limited to '')
-rw-r--r--src/decoder/wavpack_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/wavpack_plugin.c b/src/decoder/wavpack_plugin.c
index b96de361e..b2100f096 100644
--- a/src/decoder/wavpack_plugin.c
+++ b/src/decoder/wavpack_plugin.c
@@ -113,7 +113,7 @@ format_samples_int(int bytes_per_sample, void *buffer, uint32_t count)
* This function converts floating point sample data to 24-bit integer.
*/
static void
-format_samples_float(mpd_unused int bytes_per_sample, void *buffer,
+format_samples_float(G_GNUC_UNUSED int bytes_per_sample, void *buffer,
uint32_t count)
{
int32_t *dst = buffer;