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:
CaS 2006-01-10 10:29:11 +00:00
parent afd15b7592
commit f57ca76cba
19 changed files with 105 additions and 62 deletions

View file

@ -1660,7 +1660,7 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
* In the absence of detailed information, pick a reasonable value
* assuming the object will be aligned to an eight byte boundary.
*/
return (unsigned)self >> 3;
return (unsigned)(uintptr_t)self >> 3;
}
/**