Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit d228da4

Browse filesBrowse files
authored
Remove (useless) trailing semicolon from Print.cpp (espressif#7622)
1 parent c6a6324 commit d228da4
Copy full SHA for d228da4

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎cores/esp32/Print.cpp

Copy file name to clipboardExpand all lines: cores/esp32/Print.cpp
+1-1Lines changed: 1 addition & 1 deletion
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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.