diff options
author | OGAWA Hirofumi <hirofumi@mail.parknet.co.jp> | 2006-04-06 19:42:40 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-04-12 11:34:01 +0200 |
commit | bbdc1b7dbe41578da7c9a6266cf450abe97e4ca7 (patch) | |
tree | e74c98ef9a61bd0a270867734d73be316b18705e /sound/core/oss | |
parent | a145410dccdb44f81d3b56763ef9b6f721f4e47c (diff) |
[ALSA] pcm_oss: fix snd_pcm_oss_release() oops
Modules: ALSA<-OSS emulation
Fix Oops due to a typo in snd_pcm_oss.c.
Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core/oss')
-rw-r--r-- | sound/core/oss/pcm_oss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/core/oss/pcm_oss.c b/sound/core/oss/pcm_oss.c index 91114c7aeff..7c0c4e1d694 100644 --- a/sound/core/oss/pcm_oss.c +++ b/sound/core/oss/pcm_oss.c @@ -1760,7 +1760,7 @@ static int snd_pcm_oss_open_file(struct file *file, snd_pcm_oss_init_substream(substream, &setup[idx], minor); } - if (! pcm_oss_file->streams[0] && pcm_oss_file->streams[1]) { + if (!pcm_oss_file->streams[0] && !pcm_oss_file->streams[1]) { snd_pcm_oss_release_file(pcm_oss_file); return -EINVAL; } |