1
1

* key.c (is_idle): Correct maximal file descriptor and return

value.
Этот коммит содержится в:
Pavel Roskin 2003-01-27 22:37:32 +00:00
родитель b25dd0a948
Коммит 781dae3544
2 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2003-01-27 Arpi <arpi@mplayerhq.hu>
* key.c (is_idle): Correct maximal file descriptor and return
value.
2003-01-27 Andrew V. Samoilov <sav@bcs.zp.ua>
* util.h (app_text): Remove declaration - it became static.

Просмотреть файл

@ -1026,8 +1026,7 @@ is_idle (void)
#endif
timeout.tv_sec = 0;
timeout.tv_usec = 0;
select (maxfdp, &select_set, 0, 0, &timeout);
return !FD_ISSET (0, &select_set);
return (select (maxfdp + 1, &select_set, 0, 0, &timeout) <= 0);
}