Oops - typo

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3041 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 1998-10-07 21:13:00 +00:00
parent 0ac0844082
commit 239a1c59c8

View file

@ -243,10 +243,11 @@ FastMapRemangleBuckets(FastMapTable map,
while ((node = old_buckets->firstNode) != 0) {
FastMapBucket bkt;
FastMapRemoveNodeFromBucket(old_buckets++, node);
FastMapRemoveNodeFromBucket(old_buckets, node);
bkt = FastMapPickBucket(node->key, new_buckets, new_bucketCount);
FastMapAddNodeToBucket(bkt, node);
}
old_buckets++;
}
}