mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
Add cast to avoid bogus gcc-4.1 warning.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@23125 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
23ecd0ac8e
commit
564d97ceed
1 changed files with 2 additions and 2 deletions
|
@ -331,8 +331,8 @@ GSFFIInvokeWithTargetAndImp(NSInvocation *_inv, id anObject, IMP imp)
|
|||
{
|
||||
GSMethod method;
|
||||
method = GSGetMethod((GSObjCIsInstance(_target)
|
||||
? GSObjCClass(_target)
|
||||
: _target),
|
||||
? (Class)GSObjCClass(_target)
|
||||
: (Class)_target),
|
||||
_selector,
|
||||
GSObjCIsInstance(_target),
|
||||
YES);
|
||||
|
|
Loading…
Reference in a new issue