Skip to content

Commit 384d200

Browse files
committed
Merge remote-tracking branch 'upstream/nfbot/clang-format-fix/22b97dff-c1e8-478b-99b7-3164189b87f4' into IDF5_4
2 parents be7517a + 60ad1bb commit 384d200

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/PAL/COM/sockets/ssl/MbedTLS/ssl_generic.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ int mbedtls_net_recv_timeout(void *ctx, unsigned char *buf, size_t len, uint32_t
158158
159159
ret = select(fd + 1, &read_fds, NULL, NULL, timeout == 0 ? NULL : &tv);
160160
161-
// Zero fds ready means we timed out
161+
// Zero fds ready means we timed out
162162
if (ret == 0)
163163
return (MBEDTLS_ERR_SSL_TIMEOUT);
164164
@@ -175,7 +175,7 @@ int mbedtls_net_recv_timeout(void *ctx, unsigned char *buf, size_t len, uint32_t
175175
return (MBEDTLS_ERR_NET_RECV_FAILED);
176176
}
177177
178-
// This call will not block
178+
// This call will not block
179179
return (mbedtls_net_recv(ctx, buf, len));
180180
}
181181

0 commit comments

Comments
 (0)