Need a couple more chars

This commit is contained in:
Scott Baker 2023-03-10 10:42:18 -08:00
parent 940d7bd48d
commit 19204e3b35

View File

@ -351,7 +351,7 @@ String WebOTA::human_time(uint32_t sec) {
int mins = (sec / 60);
sec = sec % 60;
char buf[20] = "";
char buf[24] = "";
if (days) {
snprintf(buf, sizeof(buf), "%d days %d hours\n", days, hours);
} else if (hours) {