Unverified Commit a418058a authored by Rodrigo Garcia's avatar Rodrigo Garcia Committed by GitHub

log statement missing parameter #5778 (#5796)

parent 96ad3414
......@@ -133,7 +133,7 @@ bool EEPROMClass::begin(size_t size) {
_data = (uint8_t*) malloc(size);
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;
}
_size = size;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment