From: Takashi Iwai Date: Fri, 13 May 2005 17:30:00 +0000 (+0000) Subject: Fix compile warnings X-Git-Tag: v1.0.9~9 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=259fb326fb8a9b5273849fa4f482c13c590b8d67;p=alsa-utils.git Fix compile warnings Fixed compile warnings with gcc4. --- diff --git a/amixer/amixer.c b/amixer/amixer.c index 54a3d3f..e314aa2 100644 --- a/amixer/amixer.c +++ b/amixer/amixer.c @@ -1364,6 +1364,7 @@ static int events(int argc ATTRIBUTE_UNUSED, char *argv[] ATTRIBUTE_UNUSED) } } snd_hctl_close(handle); + return 0; } static void sevents_value(snd_mixer_selem_id_t *sid) @@ -1452,6 +1453,7 @@ static int sevents(int argc ATTRIBUTE_UNUSED, char *argv[] ATTRIBUTE_UNUSED) } } snd_mixer_close(handle); + return 0; } int main(int argc, char *argv[])