I propose this 2 line change; in helping someone on irc, this old message "not found" was confusing them. I changed it to a more generic "could not open", which allows the possilbity of inability to open because of permissions, etc..
-Dante
? dlls/winmm/wineoss/.audio.c.swp Index: dlls/winmm/wineoss/audio.c =================================================================== RCS file: /home/wine/wine/dlls/winmm/wineoss/audio.c,v retrieving revision 1.91 diff -u -r1.91 audio.c --- dlls/winmm/wineoss/audio.c 28 Jul 2003 19:02:29 -0000 1.91 +++ dlls/winmm/wineoss/audio.c 26 Aug 2003 03:04:55 -0000 @@ -524,7 +524,7 @@ return FALSE; } } else { - ERR("%s: not found!\n", ossdev->mixer_name); + ERR("%s: unable to open!\n", ossdev->mixer_name); OSS_CloseDevice(ossdev); return FALSE; } @@ -660,7 +660,7 @@ return FALSE; } } else { - ERR("%s: not found!\n", ossdev->mixer_name); + ERR("%s: unable to open!\n", ossdev->mixer_name); OSS_CloseDevice(ossdev); return FALSE; }