diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-24 09:05:18 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2005-07-24 09:05:18 +0000 |
commit | 9529397248a1330cf442e79e4d4bbe912fa7f6e6 (patch) | |
tree | a268ef9c31213d73bd6e5b1afc9155206107953c /audio | |
parent | a2458627f9d29675ef29d2a3c8c6a3df99bedfb1 (diff) | |
download | qemu-9529397248a1330cf442e79e4d4bbe912fa7f6e6.tar.gz qemu-9529397248a1330cf442e79e4d4bbe912fa7f6e6.tar.bz2 qemu-9529397248a1330cf442e79e4d4bbe912fa7f6e6.zip |
open OSS audio device as write only (malc)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1524 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'audio')
-rw-r--r-- | audio/ossaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/ossaudio.c b/audio/ossaudio.c index ee897c9dd7..5246ebb785 100644 --- a/audio/ossaudio.c +++ b/audio/ossaudio.c @@ -127,7 +127,7 @@ static int oss_open (struct oss_params *req, struct oss_params *obt, int *pfd) int fmt, freq, nchannels; const char *dspname = conf.dspname; - fd = open (dspname, O_RDWR | O_NONBLOCK); + fd = open (dspname, O_WRONLY | O_NONBLOCK); if (-1 == fd) { dolog ("Could not initialize audio hardware. Failed to open `%s':\n" "Reason:%s\n", |