fix type cast

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31458 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2010-10-01 11:24:19 +00:00
parent 5e71b7b87d
commit c8a722de47

View file

@ -300,7 +300,7 @@ setup(BOOL rerun)
equalImp = (BOOL (*)(id, SEL, id))
[NSStringClass instanceMethodForSelector: equalSel];
hashSel = @selector(hash);
hashImp = (unsigned (*)(id, SEL))
hashImp = (NSUInteger (*)(id, SEL))
[GSStringClass instanceMethodForSelector: hashSel];
caiSel = @selector(characterAtIndex:);