Skip to content

Commit 214680f

Browse files
everslickme-no-dev
authored andcommitted
Remove (useless) trailing semicolon from Print.cpp (#7622)
1 parent dfd3412 commit 214680f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: cores/esp32/Print.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ size_t Print::printf(const char *format, ...)
5757
if(len < 0) {
5858
va_end(arg);
5959
return 0;
60-
};
60+
}
6161
if(len >= (int)sizeof(loc_buf)){ // comparation of same sign type for the compiler
6262
temp = (char*) malloc(len+1);
6363
if(temp == NULL) {

0 commit comments

Comments
 (0)