From 5482bc327da5f7a4737d276fd5cd200a6eeb9e1e Mon Sep 17 00:00:00 2001 From: Jaroslav Kysela Date: Sun, 20 Sep 1998 08:05:24 +0000 Subject: [PATCH] Fixed -m option... --- alsamixer/alsamixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsamixer/alsamixer.c b/alsamixer/alsamixer.c index daadbf8..69a9d39 100644 --- a/alsamixer/alsamixer.c +++ b/alsamixer/alsamixer.c @@ -818,7 +818,7 @@ main (int argc, mixer_do_color = !mixer_do_color; break; case 'm': - mixer_id = CLAMP (optarg[0], '0', '1'); + mixer_id = CLAMP (optarg[0], '0', '1') - '0'; break; } } -- 2.47.1