mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
minor indentation fixes
This commit is contained in:
parent
0107da9aa0
commit
ec438b5733
1 changed files with 8 additions and 8 deletions
|
@ -543,8 +543,9 @@ GSIMapRemangleBuckets(GSIMapTable map,
|
|||
GSIMapBucket bkt;
|
||||
|
||||
GSIMapRemoveNodeFromBucket(old_buckets, node);
|
||||
bkt = GSIMapPickBucket(GSI_MAP_HASH(map, GSI_MAP_READ_KEY(map, &node->key)),
|
||||
new_buckets, new_bucketCount);
|
||||
bkt = GSIMapPickBucket(GSI_MAP_HASH(map,
|
||||
GSI_MAP_READ_KEY(map, &node->key)),
|
||||
new_buckets, new_bucketCount);
|
||||
GSIMapAddNodeToBucket(bkt, node);
|
||||
}
|
||||
}
|
||||
|
@ -561,8 +562,9 @@ GSIMapRemangleBuckets(GSIMapTable map,
|
|||
GSIMapBucket bkt;
|
||||
|
||||
GSIMapRemoveNodeFromBucket(old_buckets, node);
|
||||
bkt = GSIMapPickBucket(GSI_MAP_HASH(map, GSI_MAP_READ_KEY(map, &node->key)),
|
||||
new_buckets, new_bucketCount);
|
||||
bkt = GSIMapPickBucket(GSI_MAP_HASH(map,
|
||||
GSI_MAP_READ_KEY(map, &node->key)),
|
||||
new_buckets, new_bucketCount);
|
||||
GSIMapAddNodeToBucket(bkt, node);
|
||||
}
|
||||
old_buckets++;
|
||||
|
@ -987,9 +989,7 @@ GSIMapEnumeratorNextNode(GSIMapEnumerator enumerator)
|
|||
*/
|
||||
GS_STATIC_INLINE NSUInteger
|
||||
GSIMapCountByEnumeratingWithStateObjectsCount(GSIMapTable map,
|
||||
NSFastEnumerationState *state,
|
||||
id *stackbuf,
|
||||
NSUInteger len)
|
||||
NSFastEnumerationState *state, id *stackbuf, NSUInteger len)
|
||||
{
|
||||
NSInteger count;
|
||||
NSInteger i;
|
||||
|
@ -1011,7 +1011,7 @@ GSIMapCountByEnumeratingWithStateObjectsCount(GSIMapTable map,
|
|||
/* Construct the real enumerator */
|
||||
if (0 == state->state)
|
||||
{
|
||||
enumerator = GSIMapEnumeratorForMap(map);
|
||||
enumerator = GSIMapEnumeratorForMap(map);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue