mirror of
https://github.com/gnustep/libs-base.git
synced 2025-06-01 09:02:01 +00:00
Avoid trivial warnings
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@17510 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c9bb4eebda
commit
cfb39df8a1
3 changed files with 8 additions and 4 deletions
|
@ -716,7 +716,7 @@ GSDescriptionForInstanceMethod(pcl self, SEL aSel)
|
|||
{
|
||||
for (i = 0; i < p_list->count; i++)
|
||||
{
|
||||
result = GSDescriptionForInstanceMethod(p_list->list[i], aSel);
|
||||
result = GSDescriptionForInstanceMethod((pcl)p_list->list[i], aSel);
|
||||
if (result)
|
||||
{
|
||||
return result;
|
||||
|
@ -747,7 +747,7 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
|
|||
{
|
||||
for (i = 0; i < p_list->count; i++)
|
||||
{
|
||||
result = GSDescriptionForClassMethod(p_list->list[i], aSel);
|
||||
result = GSDescriptionForClassMethod((pcl)p_list->list[i], aSel);
|
||||
if (result)
|
||||
{
|
||||
return result;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue