mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
Fix issue with earlier versions of clang
This commit is contained in:
parent
120c142d22
commit
54b86e303b
1 changed files with 1 additions and 1 deletions
|
@ -579,7 +579,7 @@ static NSArray *empty = nil;
|
||||||
{
|
{
|
||||||
NSEnumerator *en = [[self executionBlocks] objectEnumerator];
|
NSEnumerator *en = [[self executionBlocks] objectEnumerator];
|
||||||
GSBlockOperationBlock theBlock;
|
GSBlockOperationBlock theBlock;
|
||||||
while((theBlock = [en nextObject]) != nil)
|
while((theBlock = [en nextObject]) != NULL)
|
||||||
{
|
{
|
||||||
CALL_BLOCK_NO_ARGS(theBlock);
|
CALL_BLOCK_NO_ARGS(theBlock);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue