Skip to content

Commit cecfce9

Browse files
committed
Fixing indents (spaces to tabs).
1 parent 8a664b7 commit cecfce9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

RunLoop/AsyncUdpSocket.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -253,11 +253,11 @@ - (id)initWithDelegate:(id)delegate userData:(long)userData enableIPv4:(BOOL)ena
253253
{
254254
CFSocketSetSocketFlags(theSocket6, kCFSocketCloseOnInvalidate);
255255
}
256-
257-
// Prevent sendto calls from sending SIGPIPE signal when socket has been shutdown for writing.
258-
// sendto will instead let us handle errors as usual by returning -1.
259-
int noSigPipe = 1;
260-
if(theSocket4)
256+
257+
// Prevent sendto calls from sending SIGPIPE signal when socket has been shutdown for writing.
258+
// sendto will instead let us handle errors as usual by returning -1.
259+
int noSigPipe = 1;
260+
if(theSocket4)
261261
{
262262
setsockopt(CFSocketGetNative(theSocket4), SOL_SOCKET, SO_NOSIGPIPE, &noSigPipe, sizeof(noSigPipe));
263263
}

0 commit comments

Comments
 (0)