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:
Francesco Cosoleto 2011-01-22 02:27:54 +01:00 committed by Jaroslav Kysela
parent 45e9496a7a
commit a9855efcb9

View file

@ -7313,7 +7313,7 @@ int snd_pcm_recover(snd_pcm_t *pcm, int err, int silent)
else
s = "overrun";
if (!silent)
SNDERR("%s occured", s);
SNDERR("%s occurred", s);
err = snd_pcm_prepare(pcm);
if (err < 0) {
SNDERR("cannot recovery from %s, prepare failed: %s", s, snd_strerror(err));