log statement missing parameter #5778 (#5796)

This commit is contained in:
Rodrigo Garcia
2021-10-23 11:34:00 -03:00
committed by GitHub
parent 96ad341451
commit a418058a66

View File

@ -133,7 +133,7 @@ bool EEPROMClass::begin(size_t size) {
_data = (uint8_t*) malloc(size); _data = (uint8_t*) malloc(size);
if(!_data) { if(!_data) {
log_e("Not enough memory for %d bytes in EEPROM"); log_e("Not enough memory for %d bytes in EEPROM", size);
return false; return false;
} }
_size = size; _size = size;