Skip to content

Commit

Permalink
Remove (useless) trailing semicolon from Print.cpp (#7622)
Browse files Browse the repository at this point in the history
  • Loading branch information
everslick committed Feb 6, 2023
1 parent c6a6324 commit d228da4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp32/Print.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit d228da4

Please sign in to comment.