]> git.alsa-project.org Git - alsa-lib.git/commitdiff
Fixed typos.
authorJaroslav Kysela <perex@perex.cz>
Mon, 19 Nov 2001 11:06:03 +0000 (11:06 +0000)
committerJaroslav Kysela <perex@perex.cz>
Mon, 19 Nov 2001 11:06:03 +0000 (11:06 +0000)
src/control/control.c
src/pcm/pcm.c

index 5a04d1d0e86a365af40f9c7a03444b4afbc327ee..374b4d943e63ddefb1ff163bd7fedb733b80fc9f 100644 (file)
@@ -444,7 +444,7 @@ int snd_async_add_ctl_handler(snd_async_handler_t **handler, snd_ctl_t *ctl,
        was_empty = list_empty(&ctl->async_handlers);
        list_add_tail(&h->hlist, &ctl->async_handlers);
        if (was_empty) {
-               err = snd_ctl_async(ctl, snd_async_get_signo(h), getpid());
+               err = snd_ctl_async(ctl, snd_async_handler_get_signo(h), getpid());
                if (err < 0) {
                        snd_async_del_handler(h);
                        return err;
index 4e397e1a88f933e86050c50efa9a1bd2e24f3788..410e13023e77fa2e0350125e885a41c3136e55aa 100644 (file)
@@ -1441,7 +1441,7 @@ int snd_async_add_pcm_handler(snd_async_handler_t **handler, snd_pcm_t *pcm,
        was_empty = list_empty(&pcm->async_handlers);
        list_add_tail(&h->hlist, &pcm->async_handlers);
        if (was_empty) {
-               err = snd_pcm_async(pcm, snd_async_signo(h), getpid());
+               err = snd_pcm_async(pcm, snd_async_handler_get_signo(h), getpid());
                if (err < 0) {
                        snd_async_del_handler(h);
                        return err;