mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
avoid warning on old compiler
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39425 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8fe8af2d57
commit
f34325cbd0
1 changed files with 2 additions and 2 deletions
|
@ -1430,12 +1430,12 @@ static NSLock *cached_proxies_gate = nil;
|
|||
|
||||
GSIMapEnumerator_t enumerator;
|
||||
GSIMapNode node;
|
||||
NSMutableArray *c;
|
||||
|
||||
enumerator = GSIMapEnumeratorForMap(IlocalObjects);
|
||||
node = GSIMapEnumeratorNextNode(&enumerator);
|
||||
|
||||
NSMutableArray *c =
|
||||
[NSMutableArray arrayWithCapacity: IlocalObjects->nodeCount];
|
||||
c = [NSMutableArray arrayWithCapacity: IlocalObjects->nodeCount];
|
||||
while (node != 0)
|
||||
{
|
||||
[c addObject: node->key.obj];
|
||||
|
|
Loading…
Reference in a new issue