diff --git a/cores/esp32/Print.cpp b/cores/esp32/Print.cpp index e5d388ec588f4011938cb2dcaa1ffd99891a3286..53231e6090958190ccc957f58b815728f53e3f29 100644 --- a/cores/esp32/Print.cpp +++ b/cores/esp32/Print.cpp @@ -57,7 +57,7 @@ size_t Print::printf(const char *format, ...) if(len < 0) { va_end(arg); return 0; - }; + } if(len >= (int)sizeof(loc_buf)){ // comparation of same sign type for the compiler temp = (char*) malloc(len+1); if(temp == NULL) {