Commit ce8a3e33 authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #843 from DonLakeFlyer/RCCompWarnings

Fix unit test crash rom Pull 840
parents 8890e394 bb8a167c
......@@ -711,7 +711,7 @@ void PX4RCCalibrationTest::_validateWidgets(int validateMask, const struct Chann
}
}
for (int chan=_availableChannels; chan<=PX4RCCalibration::_chanMax; chan++) {
for (int chan=_availableChannels; chan<PX4RCCalibration::_chanMax; chan++) {
QCOMPARE(_rgRadioWidget[chan]->isEnabled(), false);
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment