Fix typo in GSRunLoopCtxt.m.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@27619 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
wlux 2009-01-17 13:36:22 +00:00
parent 243cd7f870
commit 8a5a8ba8eb
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-01-17 Wolfgang Lux <wolfgang.lux@gmail.com>
* Source/unix/GSRunLoopCtxt.m (+awakenedBefore): Fix typo.
2009-01-17 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSLock.m: Revert last change.

View file

@ -1039,7 +1039,7 @@ static void setPollfd(int fd, int event, GSRunLoopCtxt *ctxt)
memset(&write_fds, '\0', sizeof(write_fds));
timeout.tv_sec = milliseconds/1000;
timeout.tv_usec = (milliseconds - 1000 * timeout.tv_sec) * 1000;
FD_SET (threadInof->inputFd, &read_fds);
FD_SET (threadInfo->inputFd, &read_fds);
if (select (threadInfo->inputFd, &read_fds, &write_fds,
&exception_fds, &timeout) > 0)
{