Removed bug in Hyperion.cpp and warning in TestRs232HighSpeed.cpp

Former-commit-id: 63e992a3590db5a4e2c8d121b08291588f347ac7
This commit is contained in:
T. van der Zwan
2013-12-28 08:41:23 +01:00
parent b63fdb0333
commit 47d3f475ed
3 changed files with 5 additions and 4 deletions

View File

@@ -363,7 +363,7 @@ void Hyperion::clear(int priority)
_muxer.clearInput(priority);
// update leds if necessary
if (priority < _muxer.getCurrentPriority());
if (priority < _muxer.getCurrentPriority())
{
update();
}