]> git.alsa-project.org Git - alsa-lib.git/commitdiff
pcm: fix typo in snd_pcm_recover() error message
authorFrancesco Cosoleto <cosoleto@gmail.com>
Sat, 22 Jan 2011 01:27:54 +0000 (02:27 +0100)
committerJaroslav Kysela <perex@perex.cz>
Sun, 23 Jan 2011 13:29:40 +0000 (14:29 +0100)
Signed-off-by: Francesco Cosoleto <cosoleto@gmail.com>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
src/pcm/pcm.c

index 906b50257ad745c409f5fdc9fd218ba1f81d9dea..02dea0d02bb017c4dbd89b68e9255ee5043d2b11 100644 (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));