mvp: fixed default device detection

The check "open()!=0" is wrong, you have to write "open()>=0", because
-1 means error, and 0 is a valid file handle.
This commit is contained in:
Max Kellermann 2009-02-26 22:10:58 +01:00
parent ec926539a3
commit dfea6b7cdd
2 changed files with 2 additions and 1 deletions

1
NEWS
View File

@ -20,6 +20,7 @@ ver 0.15 - (200?/??/??)
- mvp: fall back to stereo - mvp: fall back to stereo
- mvp: fall back to 16 bit audio samples - mvp: fall back to 16 bit audio samples
- mvp: check for reopen errors - mvp: check for reopen errors
- mvp: fixed default device detection
* commands: * commands:
- "playlistinfo" supports a range now - "playlistinfo" supports a range now
- added "sticker database", command "sticker", which allows clients - added "sticker database", command "sticker", which allows clients

View File

@ -114,7 +114,7 @@ mvp_output_test_default_device(void)
fd = open("/dev/adec_pcm", O_WRONLY); fd = open("/dev/adec_pcm", O_WRONLY);
if (fd) { if (fd >= 0) {
close(fd); close(fd);
return true; return true;
} }