Changes for 64bit clean printf format strings.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@36810 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2013-07-03 06:46:41 +00:00
parent a728a03c0c
commit b2d5fd280c
32 changed files with 223 additions and 168 deletions

View file

@ -45,9 +45,9 @@
- (NSString*) description
{
return [NSString stringWithFormat:
@"NSPortMessage 0x%x (Id %u)\n Send: %@\n Recv: %@\n Components -\n%@",
self, _msgid, _send, _recv, _components];
return [NSString stringWithFormat: @"NSPortMessage 0x%"PRIxPTR
@" (Id %u)\n Send: %@\n Recv: %@\n Components -\n%@",
(NSUInteger)self, _msgid, _send, _recv, _components];
}
/* PortMessages MUST be initialised with ports and data. */