Skip to content
Snippets Groups Projects
Commit 208ab8b3 authored by Roman Moravčík's avatar Roman Moravčík Committed by Scott Lahteine
Browse files

Fix compilation with one service interval (#13185)

parent 567d03a2
Branches
Tags
No related merge requests found
......@@ -94,7 +94,15 @@ void PrintCounter::initStats() {
loaded = true;
data = { 0, 0, 0, 0, 0.0
#if HAS_SERVICE_INTERVALS
, SERVICE_INTERVAL_SEC_1, SERVICE_INTERVAL_SEC_2, SERVICE_INTERVAL_SEC_3
#if SERVICE_INTERVAL_1 > 0
, SERVICE_INTERVAL_SEC_1
#endif
#if SERVICE_INTERVAL_2 > 0
, SERVICE_INTERVAL_SEC_2
#endif
#if SERVICE_INTERVAL_3 > 0
, SERVICE_INTERVAL_SEC_3
#endif
#endif
};
......
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment