mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
add missing brackets
This commit is contained in:
parent
021812f43d
commit
7d4771ec2d
1 changed files with 4 additions and 4 deletions
|
@ -1173,12 +1173,12 @@ debugWrite(GSHTTPURLHandle *handle, NSData *data)
|
|||
return;
|
||||
}
|
||||
|
||||
ASSIGN(in, [NSString stringWithFormat: @"(%@:%@ <-- %@:%@)",
|
||||
ASSIGN(in, ([NSString stringWithFormat: @"(%@:%@ <-- %@:%@)",
|
||||
[sock socketLocalAddress], [sock socketLocalService],
|
||||
[sock socketAddress], [sock socketService]]);
|
||||
ASSIGN(out, [NSString stringWithFormat: @"(%@:%@ --> %@:%@)",
|
||||
[sock socketAddress], [sock socketService]]));
|
||||
ASSIGN(out, ([NSString stringWithFormat: @"(%@:%@ --> %@:%@)",
|
||||
[sock socketLocalAddress], [sock socketLocalService],
|
||||
[sock socketAddress], [sock socketService]]);
|
||||
[sock socketAddress], [sock socketService]]));
|
||||
|
||||
if (debug)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue