kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'bugfix/missing_return_in_lp_print' into 'master'
fix(lp-core): Added missing return statement to lp_core_printf() See merge request espressif/esp-idf!24531pull/11819/head
commit
c14bdc9394
|
@ -266,4 +266,6 @@ int lp_core_printf(const char* format, ...)
|
|||
int ret = lp_core_ets_vprintf(lp_uart_send_char, format, ap);
|
||||
|
||||
va_end(ap);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue