mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-12-23 02:46:30 +01:00
alsactl - Remove debug print
Remove an old debug print that simply annoys.
This commit is contained in:
parent
7992d3aca0
commit
f13bea104b
1 changed files with 1 additions and 3 deletions
|
@ -810,10 +810,8 @@ static int add_user_control(snd_ctl_t *handle, snd_ctl_elem_info_t *info, snd_co
|
||||||
err = snd_ctl_elem_add_integer(handle, id, count, imin, imax, istep);
|
err = snd_ctl_elem_add_integer(handle, id, count, imin, imax, istep);
|
||||||
if (err < 0)
|
if (err < 0)
|
||||||
goto error;
|
goto error;
|
||||||
if (tlv) {
|
if (tlv)
|
||||||
fprintf(stderr, "XXX write TLV...\n");
|
|
||||||
snd_ctl_elem_tlv_write(handle, id, tlv);
|
snd_ctl_elem_tlv_write(handle, id, tlv);
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
case SND_CTL_ELEM_TYPE_BOOLEAN:
|
case SND_CTL_ELEM_TYPE_BOOLEAN:
|
||||||
err = snd_ctl_elem_add_boolean(handle, id, count);
|
err = snd_ctl_elem_add_boolean(handle, id, count);
|
||||||
|
|
Loading…
Reference in a new issue