Bugfix - missing increment

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3040 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-10-07 21:10:05 +00:00
parent 50e19ff74b
commit 39d2370fc4

View file

@ -243,7 +243,7 @@ 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);
}