fix format string error in -description

This commit is contained in:
Richard Frith-Macdonald 2020-12-07 11:21:16 +00:00
parent 3bf1fc5490
commit 10a8e9faf8

View file

@ -1511,7 +1511,7 @@ setNonBlocking(SOCKET fd)
- (NSString*) description
{
return [NSString stringWithFormat: @"%@ sock %d loopID %d",
return [NSString stringWithFormat: @"%@ sock %d loopID %p",
[super description], _sock, _loopID];
}