Skip to content

Commit 9897bca

Browse files
committed
lib/utils/stdout_helpers: Fix function signature to match py/mphal.h.
1 parent a589fa3 commit 9897bca

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/utils/stdout_helpers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
// Send "cooked" string of given length, where every occurance of
1313
// LF character is replaced with CR LF.
14-
void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
14+
void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
1515
while (len--) {
1616
if (*str == '\n') {
1717
mp_hal_stdout_tx_strn("\r", 1);

0 commit comments

Comments
 (0)