fix(lp-core): Added missing return statement to lp_core_printf()

pull/11819/head
Sudeep Mohanty 2023-06-30 16:31:37 +02:00
rodzic f5ccae4d93
commit f6df189437
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -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;
}