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:
rfm 2016-03-14 07:11:51 +00:00
parent d53145d997
commit 838b748db0

View file

@ -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
{