mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-10 00:45:41 +01:00
Removed debugging message..
This commit is contained in:
parent
74a386d8c5
commit
0e8adecc8f
1 changed files with 1 additions and 3 deletions
|
@ -490,10 +490,8 @@ static void set_switch_boolean(int val)
|
|||
if (sw->type != SND_CTL_SW_TYPE_BOOLEAN)
|
||||
yyerror("Switch '%s' isn't boolean type...", sw->name);
|
||||
xx = val ? 1 : 0;
|
||||
if (sw->value.enable != xx) {
|
||||
printf("change!!\n");
|
||||
if (sw->value.enable != xx)
|
||||
*Xswitchchange = 1;
|
||||
}
|
||||
sw->value.enable = xx;
|
||||
printf("name = '%s', sw->value.enable = %i\n", sw->name, xx);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue