Skip to content

Commit

Permalink
add missing brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
rfm committed Nov 22, 2024
1 parent 021812f commit 7d4771e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Source/GSHTTPURLHandle.m
Original file line number Diff line number Diff line change
Expand Up @@ -1173,12 +1173,12 @@ - (void) bgdConnect: (NSNotification*)notification
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)
{
Expand Down

0 comments on commit 7d4771e

Please sign in to comment.