fixed "struct fd_set" to fd_set for glibc

CVS patchset: 1707
CVS date: 1997/06/19 22:17:45
This commit is contained in:
ewt 1997-06-19 22:17:45 +00:00
parent 4ff14e057d
commit 5b52e39899
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ int timedRead(int fd, void * bufptr, int length) {
int bytesRead;
int total = 0;
char * buf = bufptr;
struct fd_set readSet;
fd_set readSet;
struct timeval tv;
while (total < length) {