mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Banlu Kemiyatorn <object@gmail.com> ... fix error checking condition for dependencies
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32391 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7300f90c8a
commit
2222fdeb16
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-02-27 Banlu Kemiyatorn <object@gmail.com>
|
||||
|
||||
* Source/NSOperation.m: Fix error checking condition for dependencies.
|
||||
|
||||
2011-02-27 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* configure.ac: Look for gc.h in gc subdirectory
|
||||
|
|
|
@ -276,7 +276,7 @@ static NSArray *empty = nil;
|
|||
en = [internal->dependencies objectEnumerator];
|
||||
while ((op = [en nextObject]) != nil)
|
||||
{
|
||||
if (NO == [op isReady])
|
||||
if (NO == [op isFinished])
|
||||
break;
|
||||
}
|
||||
if (op == nil)
|
||||
|
|
Loading…
Reference in a new issue