Skip to content

Commit 60ad1bb

Browse files
committed
Code style fixes
Automated fixes for code style.
1 parent be7517a commit 60ad1bb

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)