mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-31 00:30:53 +00:00
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:
parent
5af34bc87f
commit
c9fb0577bd
11 changed files with 56 additions and 42 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue