1 parent a589fa3 commit 9897bcaCopy full SHA for 9897bca
1 file changed
lib/utils/stdout_helpers.c
@@ -11,7 +11,7 @@
11
12
// Send "cooked" string of given length, where every occurance of
13
// LF character is replaced with CR LF.
14
-void mp_hal_stdout_tx_strn_cooked(const char *str, mp_uint_t len) {
+void mp_hal_stdout_tx_strn_cooked(const char *str, size_t len) {
15
while (len--) {
16
if (*str == '\n') {
17
mp_hal_stdout_tx_strn("\r", 1);
0 commit comments