From b729f4fc30fab7d3a04bcee5e67604eb44e8a43f Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Mon, 31 Jan 2005 13:48:50 +0000 Subject: [PATCH] exits with status 0 after -h option amixer exits with status 0 after -h option (ALSA BTS #858). --- amixer/amixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/amixer/amixer.c b/amixer/amixer.c index d4a59e6..57912a3 100644 --- a/amixer/amixer.c +++ b/amixer/amixer.c @@ -1512,7 +1512,7 @@ int main(int argc, char *argv[]) } if (morehelp) { help(); - return 1; + return 0; } if (argc - optind <= 0) { return selems(LEVEL_BASIC | level) ? 1 : 0;