]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Removed wrong ATTRIBUTE_UNUSED
authorTakashi Iwai <tiwai@suse.de>
Tue, 11 Jan 2005 15:10:03 +0000 (15:10 +0000)
committerTakashi Iwai <tiwai@suse.de>
Tue, 11 Jan 2005 15:10:03 +0000 (15:10 +0000)
Removed a wrong ATTRIBUTE_UNUSED in snd_output_stdio_close().

src/output.c

index 93530cd950a7dbd035e3c904038690192e000fa5..fb1328ec5af61d20028c7288ef4b65207a7276ee 100644 (file)
@@ -132,7 +132,7 @@ typedef struct _snd_output_stdio {
        FILE *fp;
 } snd_output_stdio_t;
 
-static int snd_output_stdio_close(snd_output_t *output ATTRIBUTE_UNUSED)
+static int snd_output_stdio_close(snd_output_t *output)
 {
        snd_output_stdio_t *stdio = output->private_data;
        if (stdio->close)