mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
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:
parent
61a6648a75
commit
ff7212cf67
2 changed files with 5 additions and 1 deletions
|
@ -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.
|
||||
|
|
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue