mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 00:11:26 +00:00
Fixes for 64bit systems .. mostly cosmetic avoidance of compiler warnings.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
dc79072c9f
commit
06981169ed
19 changed files with 105 additions and 62 deletions
|
@ -837,7 +837,7 @@ compareIt(id o1, id o2, void* context)
|
|||
struct foo *f = (struct foo*)context;
|
||||
o1 = (*f->i)(f->d, @selector(objectForKey:), o1);
|
||||
o2 = (*f->i)(f->d, @selector(objectForKey:), o2);
|
||||
return (int)[o1 performSelector: f->s withObject: o2];
|
||||
return (int)(intptr_t)[o1 performSelector: f->s withObject: o2];
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue