add missing brackets

This commit is contained in:
rfm 2024-11-22 06:27:57 +00:00
parent 021812f43d
commit 7d4771ec2d

View file

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