diff --git a/ChangeLog b/ChangeLog index d24210a8b..a81363154 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-03-20 Richard Frith-Macdonald + + * Source/win32/GSRunLoopCtxt.m: Fix bad function call (bug #22676) + 2008-03-19 Richard Frith-Macdonald * Source/NSAutoreleasePool.m: Use get_imp() to fetch the diff --git a/Source/win32/GSRunLoopCtxt.m b/Source/win32/GSRunLoopCtxt.m index b4f579639..9955d1320 100644 --- a/Source/win32/GSRunLoopCtxt.m +++ b/Source/win32/GSRunLoopCtxt.m @@ -275,7 +275,7 @@ static const NSMapTableValueCallBacks WatcherMapValueCallBacks = - (BOOL) pollUntil: (int)milliseconds within: (NSArray*)contexts { - GSRunLoopThreadInfo *threadInfo = GSRunLoopForThread(nil, YES); + GSRunLoopThreadInfo *threadInfo = GSRunLoopInfoForThread(nil); NSMapEnumerator hEnum; GSRunLoopWatcher *watcher; HANDLE handleArray[MAXIMUM_WAIT_OBJECTS-1];