Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d138b445 authored by Jaroslav Kysela's avatar Jaroslav Kysela
Browse files

[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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {