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

View File

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