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 a418058

Browse filesBrowse files
authored
log statement missing parameter espressif#5778 (espressif#5796)
1 parent 96ad341 commit a418058
Copy full SHA for a418058

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎libraries/EEPROM/src/EEPROM.cpp

Copy file name to clipboardExpand all lines: libraries/EEPROM/src/EEPROM.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ bool EEPROMClass::begin(size_t size) {
133133

134134
_data = (uint8_t*) malloc(size);
135135
if(!_data) {
136-
log_e("Not enough memory for %d bytes in EEPROM");
136+
log_e("Not enough memory for %d bytes in EEPROM", size);
137137
return false;
138138
}
139139
_size = size;

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.