From d228da4a27ef91bf66bbb29bbc03460c959c320b Mon Sep 17 00:00:00 2001 From: Clemens Kirchgatterer Date: Mon, 6 Feb 2023 20:13:52 +0100 Subject: [PATCH] Remove (useless) trailing semicolon from Print.cpp (#7622) --- 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 e5d388ec5..53231e609 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) { -- GitLab