mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Temporary revert David's change to use PRIxPTR, PRIuPTR and
PRIdPTR. Old compilers don't handled these well. (That change didn't have a ChangeLog entry) git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@33766 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
c3d229f716
commit
9e7246aa24
11 changed files with 36 additions and 20 deletions
|
@ -1494,7 +1494,7 @@ static NSURLProtocol *placeholder = nil;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Unexpected event %" PRIdPTR " occurred on stream %@ not being used by %@",
|
||||
NSLog(@"Unexpected event %d occurred on stream %@ not being used by %@",
|
||||
event, stream, self);
|
||||
}
|
||||
if (event == NSStreamEventErrorOccurred)
|
||||
|
@ -1506,7 +1506,7 @@ static NSURLProtocol *placeholder = nil;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Unexpected event %" PRIdPTR " ignored on stream %@ of %@",
|
||||
NSLog(@"Unexpected event %d ignored on stream %@ of %@",
|
||||
event, stream, self);
|
||||
}
|
||||
}
|
||||
|
@ -1640,7 +1640,7 @@ static NSURLProtocol *placeholder = nil;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Unexpected event %" PRIdPTR " occurred on stream %@ not being used by %@",
|
||||
NSLog(@"Unexpected event %d occurred on stream %@ not being used by %@",
|
||||
event, stream, self);
|
||||
}
|
||||
if (event == NSStreamEventErrorOccurred)
|
||||
|
@ -1652,7 +1652,7 @@ static NSURLProtocol *placeholder = nil;
|
|||
}
|
||||
else
|
||||
{
|
||||
NSLog(@"Unexpected event %" PRIdPTR " ignored on stream %@ of %@",
|
||||
NSLog(@"Unexpected event %d ignored on stream %@ of %@",
|
||||
event, stream, self);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue