Fixed minor bug (found by clang :-) ) with incorrect ; after if statemtn

Former-commit-id: 12353a7b0cc67e0496c7f28baf063eddfcc973a9
This commit is contained in:
T. van der Zwan 2013-12-20 20:55:23 +00:00
parent 92bb518698
commit e6fb2ad53c
1 changed files with 1 additions and 1 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();
}