Remove (useless) trailing semicolon from Print.cpp (#7622)

This commit is contained in:
Clemens Kirchgatterer 2023-02-06 20:13:52 +01:00 committed by GitHub
parent c6a632413a
commit d228da4a27
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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) {