Bugzilla 412 submitted by dpg@ix.netcom.com, fix compile time warnings.

This commit is contained in:
blythe%netscape.com 1998-10-16 22:14:24 +00:00
Родитель 622f4508be
Коммит 11bd8f8dac
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -50,8 +50,8 @@ void CSelectTracker::AddSelect(SelectType stType, PRFileDesc *prFD)
unsigned int index = fd_set_size;
unsigned int count;
#define CONNECT_FLAGS PR_POLL_READ | PR_POLL_EXCEPT | PR_POLL_WRITE
#define READ_FLAGS PR_POLL_READ | PR_POLL_EXCEPT
#define CONNECT_FLAGS (PR_POLL_READ | PR_POLL_EXCEPT | PR_POLL_WRITE)
#define READ_FLAGS (PR_POLL_READ | PR_POLL_EXCEPT)
// Go through the list, make sure that there is not already an entry for fd.
for(count=0; count < fd_set_size; count++)