Skip to content

Commit a418058

Browse files
authored
log statement missing parameter espressif#5778 (espressif#5796)
1 parent 96ad341 commit a418058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/EEPROM/src/EEPROM.cpp

+1-1
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)