mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-04 13:30:08 -05:00
pcm: fix typo in snd_pcm_recover() error message
Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com> Signed-off-by: Jaroslav Kysela <perex@perex.cz>
This commit is contained in:
parent
45e9496a7a
commit
a9855efcb9
1 changed files with 1 additions and 1 deletions
|
|
@ -7313,7 +7313,7 @@ int snd_pcm_recover(snd_pcm_t *pcm, int err, int silent)
|
||||||
else
|
else
|
||||||
s = "overrun";
|
s = "overrun";
|
||||||
if (!silent)
|
if (!silent)
|
||||||
SNDERR("%s occured", s);
|
SNDERR("%s occurred", s);
|
||||||
err = snd_pcm_prepare(pcm);
|
err = snd_pcm_prepare(pcm);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
SNDERR("cannot recovery from %s, prepare failed: %s", s, snd_strerror(err));
|
SNDERR("cannot recovery from %s, prepare failed: %s", s, snd_strerror(err));
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue