mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-25 01:31:08 +00:00
fixup error in runtime specific calls
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@32415 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
40e6fedf16
commit
7f1b4c1806
1 changed files with 2 additions and 2 deletions
|
@ -186,9 +186,9 @@ GSTypesFromSelector(SEL sel)
|
|||
#if NeXT_RUNTIME
|
||||
return 0;
|
||||
#elif defined (__GNU_LIBOBJC__)
|
||||
return sel_getTypes(name);
|
||||
return sel_getTypeEncoding(sel);
|
||||
#elif defined (__GNUSTEP_RUNTIME__)
|
||||
return sel_getType_np(name);
|
||||
return sel_getType_np(sel);
|
||||
#else
|
||||
if (sel == 0)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue