Skip to content
Snippets Groups Projects
Unverified Commit d1299b21 authored by Dimitrios Stoupis's avatar Dimitrios Stoupis
Browse files

Corrected an unmatched type comaparison

parent a777774a
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,7 @@ void EventReportService::listOfDisabledEventsReport() {
uint16_t numberOfDisabledEvents = stateOfEvents.size() - stateOfEvents.count();
report.appendHalfword(numberOfDisabledEvents);
for (uint16_t i = 0; i < stateOfEvents.size(); i++) {
if (stateOfEvents[i] == 0) {
if (stateOfEvents[i] == false) {
report.appendEnum16(i);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment