From 7c4afa2c8786f0cef82422d73e5a915c1aabe668 Mon Sep 17 00:00:00 2001 From: Clemens Kirchgatterer Date: Sat, 24 Dec 2022 12:03:22 +0100 Subject: [PATCH] Remove (useless) trailing semicolon from Print.cpp --- cores/esp32/Print.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp32/Print.cpp b/cores/esp32/Print.cpp index e5d388ec588..53231e60909 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) {