Commit d138b445 authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] fixed PAUSE ioctl for user space interface

Timer Midlevel
- fixed traditional cut-n-paste error
Signed-off-by: default avatarJaroslav Kysela <perex@suse.cz>
parent 8c50b37c
......@@ -1687,7 +1687,7 @@ static int snd_timer_user_pause(struct file *file)
tu = file->private_data;
snd_assert(tu->timeri != NULL, return -ENXIO);
return (err = snd_timer_continue(tu->timeri)) < 0 ? err : 0;
return (err = snd_timer_pause(tu->timeri)) < 0 ? err : 0;
}
enum {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment