mirror of
https://github.com/alsa-project/alsa-utils
synced 2024-11-09 23:55:42 +01:00
Fixed wrong message (load error)
This commit is contained in:
parent
67f96386c6
commit
33b53d88fd
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@ static int info(void)
|
||||||
}
|
}
|
||||||
err = snd_mixer_load(mhandle);
|
err = snd_mixer_load(mhandle);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
error("Mixer load error: %s", card, snd_strerror(err));
|
error("Mixer load %s error: %s", card, snd_strerror(err));
|
||||||
snd_mixer_close(mhandle);
|
snd_mixer_close(mhandle);
|
||||||
return err;
|
return err;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue