decoder_api: added G_GNUC_UNUSED attribute to decoder_initialized()

In NDEBUG, the parameter "decoder" is not used.
This commit is contained in:
Max Kellermann 2009-01-15 08:33:32 +01:00
parent 5232f05470
commit 8fe867c71d

View File

@ -32,7 +32,7 @@
#include <assert.h>
#include <stdlib.h>
void decoder_initialized(struct decoder * decoder,
void decoder_initialized(G_GNUC_UNUSED struct decoder * decoder,
const struct audio_format *audio_format,
bool seekable, float total_time)
{