Skip to content

Commit 09023ab

Browse files
committed
Update espressif function prototype to match
1 parent 3667a0b commit 09023ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/espressif/common-hal/ssl/SSLSocket.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ bool common_hal_ssl_sslsocket_listen(ssl_sslsocket_obj_t *self, int backlog) {
9696
return common_hal_socketpool_socket_listen(self->sock, backlog);
9797
}
9898

99-
mp_uint_t common_hal_ssl_sslsocket_recv_into(ssl_sslsocket_obj_t *self, const uint8_t *buf, uint32_t len) {
99+
mp_uint_t common_hal_ssl_sslsocket_recv_into(ssl_sslsocket_obj_t *self, uint8_t *buf, uint32_t len) {
100100
int received = 0;
101101
bool timed_out = false;
102102
int status = 0;

0 commit comments

Comments
 (0)