Skip to content
Snippets Groups Projects
Commit 9897bcaa authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

lib/utils/stdout_helpers: Fix function signature to match py/mphal.h.

parent a589fa3e
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,7 @@
// Send "cooked" string of given length, where every occurance of
// LF character is replaced with CR LF.
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) {
while (len--) {
if (*str == '\n') {
mp_hal_stdout_tx_strn("\r", 1);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment