mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
fix bad printf format
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39535 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d53145d997
commit
838b748db0
1 changed files with 2 additions and 2 deletions
|
@ -145,12 +145,12 @@ NSLog(@"%@ Server %p %@", prefix, theStream, eventString(theStream, streamEvent)
|
|||
if (theStream==serverStream)
|
||||
{
|
||||
NSAssert(serverInput==nil, @"accept twice");
|
||||
NSLog(@"%@ Server %p %@ accepting incoming connection", prefix, theStream);
|
||||
NSLog(@"%@ Server %p accepting incoming connection", prefix, theStream);
|
||||
[serverStream acceptWithInputStream: &serverInput
|
||||
outputStream: &serverOutput];
|
||||
if (nil == serverInput) // it is ok to accept nothing
|
||||
{
|
||||
NSLog(@"%@ Server %p %@ accept failed (no connection)", prefix, theStream);
|
||||
NSLog(@"%@ Server %p accept failed (no connection)", prefix, theStream);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue