open OSS audio device as write only (malc)
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 24 Jul 2005 09:05:18 +0000 (09:05 +0000)
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>
Sun, 24 Jul 2005 09:05:18 +0000 (09:05 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1524 c046a42c-6fe2-441c-8c8c-71466251a162

audio/ossaudio.c

index ee897c9..5246ebb 100644 (file)
@@ -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",