word size fixups

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34468 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2012-01-09 08:28:27 +00:00
parent 9cb78b1fa9
commit b143b3fabf
15 changed files with 63 additions and 36 deletions

View file

@ -1535,7 +1535,8 @@ static NSURLProtocol *placeholder = nil;
}
else
{
NSLog(@"Unexpected event %lu occurred on stream %@ not being used by %@",
NSLog(@"Unexpected event %"PRIuPTR
" occurred on stream %@ not being used by %@",
event, stream, self);
}
if (event == NSStreamEventErrorOccurred)
@ -1547,7 +1548,7 @@ static NSURLProtocol *placeholder = nil;
}
else
{
NSLog(@"Unexpected event %lu ignored on stream %@ of %@",
NSLog(@"Unexpected event %"PRIuPTR" ignored on stream %@ of %@",
event, stream, self);
}
}
@ -1681,7 +1682,8 @@ static NSURLProtocol *placeholder = nil;
}
else
{
NSLog(@"Unexpected event %lu occurred on stream %@ not being used by %@",
NSLog(@"Unexpected event %"PRIuPTR
" occurred on stream %@ not being used by %@",
event, stream, self);
}
if (event == NSStreamEventErrorOccurred)
@ -1693,7 +1695,7 @@ static NSURLProtocol *placeholder = nil;
}
else
{
NSLog(@"Unexpected event %lu ignored on stream %@ of %@",
NSLog(@"Unexpected event %"PRIuPTR" ignored on stream %@ of %@",
event, stream, self);
}
}