Fix several warnings in code and libs

This commit is contained in:
Luc
2020-11-30 13:46:50 +01:00
parent 217b5062b4
commit fa863105fe
12 changed files with 176 additions and 154 deletions

View File

@@ -221,7 +221,7 @@ bool sendLine2Serial (String & line, int32_t linenb, int32_t * newlinenb)
return sendLine2Serial (line, line_number, newlinenb);
} else {
//the line requested is not the current one so we stop
if (line_number !=linenb) {
if (line_number !=(uint32_t)linenb) {
log_esp3d ("Wrong line requested");
count = 5;
}