Remove (useless) trailing semicolon from Print.cpp (#7622)
This commit is contained in:
parent
c6a632413a
commit
d228da4a27
1 changed files with 1 additions and 1 deletions
|
|
@ -57,7 +57,7 @@ size_t Print::printf(const char *format, ...)
|
||||||
if(len < 0) {
|
if(len < 0) {
|
||||||
va_end(arg);
|
va_end(arg);
|
||||||
return 0;
|
return 0;
|
||||||
};
|
}
|
||||||
if(len >= (int)sizeof(loc_buf)){ // comparation of same sign type for the compiler
|
if(len >= (int)sizeof(loc_buf)){ // comparation of same sign type for the compiler
|
||||||
temp = (char*) malloc(len+1);
|
temp = (char*) malloc(len+1);
|
||||||
if(temp == NULL) {
|
if(temp == NULL) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue