From: Jaroslav Kysela Date: Sun, 20 Sep 1998 08:05:24 +0000 (+0000) Subject: Fixed -m option... X-Git-Tag: v1.0.3~557 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=5482bc327da5f7a4737d276fd5cd200a6eeb9e1e;p=alsa-utils.git Fixed -m option... --- 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; } }