Commit b4efe205 authored by Don Gagne's avatar Don Gagne

Fix compiler warning

parent 0778e3ba
......@@ -353,7 +353,7 @@ bool MissionController::_loadJsonMissionFile(const QByteArray& bytes, QmlObjectL
nextSequenceNumber++;
}
} while (nextSimpleItemIndex < itemArray.count() | nextComplexItemIndex < complexItems->count());
} while (nextSimpleItemIndex < itemArray.count() || nextComplexItemIndex < complexItems->count());
if (json.contains(_jsonPlannedHomePositionKey)) {
SimpleMissionItem* item = new SimpleMissionItem(_activeVehicle, this);
......
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