Fix more unsigned int / int cases that should be NS[U]Integer

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@31355 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ericwa 2010-09-16 02:55:24 +00:00
parent 5af34bc87f
commit c9fb0577bd
11 changed files with 56 additions and 42 deletions

View file

@ -2286,16 +2286,16 @@ static Class tcpPortClass;
* the start can be written directly without having to copy data to another
* buffer etc.
*/
- (unsigned int) reservedSpaceLength
- (NSUInteger) reservedSpaceLength
{
return sizeof(GSPortItemHeader) + sizeof(GSPortMsgHeader);
}
- (BOOL) sendBeforeDate: (NSDate*)when
msgid: (int)msgId
msgid: (NSInteger)msgId
components: (NSMutableArray*)components
from: (NSPort*)receivingPort
reserved: (unsigned)length
reserved: (NSUInteger)length
{
BOOL sent = NO;
GSTcpHandle *h;