get things to compile again

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32071 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2011-02-11 13:05:48 +00:00
parent ae709dcd9a
commit b21d800c2a
2 changed files with 4 additions and 2 deletions

View file

@ -2,6 +2,8 @@
* Source/GSICUString.m:
Fix leak spotted by static analyser.
* Source/NSArray.m:
Fix error in enumeration changes causing compile failure.
2011-02-11 12:06 David Chisnall <theraven@gna.org>

View file

@ -1692,7 +1692,7 @@ compare(id elem1, id elem2, void* context)
return set;
}
count++;
END_FOR_IN(self)
END_FOR_IN(enumerator)
return set;
}
@ -1735,7 +1735,7 @@ compare(id elem1, id elem2, void* context)
return NSNotFound;
}
count++;
END_FOR_IN(self)
END_FOR_IN(enumerator)
return NSNotFound;
}