From 39d2370fc44d0bd301c83a332f4bdac706e591ed Mon Sep 17 00:00:00 2001 From: richard Date: Wed, 7 Oct 1998 21:10:05 +0000 Subject: [PATCH] Bugfix - missing increment git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3040 72102866-910b-0410-8b05-ffd578937521 --- Source/FastMap.x | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/FastMap.x b/Source/FastMap.x index bdab08fdd..2b0d27f2b 100644 --- a/Source/FastMap.x +++ b/Source/FastMap.x @@ -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); }