AP_Notify: Change to the value of boolean.

This commit is contained in:
murata 2017-06-07 06:53:27 +09:00 committed by Randy Mackay
parent fc3406d07f
commit 894b759149

View File

@ -127,10 +127,10 @@ bool OreoLED_PX4::slow_counter()
update_counter++;
if (update_counter < 5) {
return 1;
return true;
} else {
update_counter = 0;
return 0;
return false;
}
}