Browse Source

ntp: fix build when ntp is disabled

mcspr-patch-1
Maxim Prokhorov 3 years ago
parent
commit
3ba6011d49
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/utils.cpp

+ 1
- 1
code/espurna/utils.cpp View File

@ -295,7 +295,7 @@ void infoUptime() {
spec.tm_min, spec.tm_sec
);
#else
DEBUG_MSG_P(PSTR("[MAIN] Uptime: %lu seconds\n"), uptime);
DEBUG_MSG_P(PSTR("[MAIN] Uptime: %lu seconds\n"), getUptime());
#endif // NTP_SUPPORT
}


Loading…
Cancel
Save