From e6fb2ad53c8f5a86134da006c1ad8bb6087e6dd3 Mon Sep 17 00:00:00 2001 From: "T. van der Zwan" Date: Fri, 20 Dec 2013 20:55:23 +0000 Subject: [PATCH] Fixed minor bug (found by clang :-) ) with incorrect ; after if statemtn Former-commit-id: 12353a7b0cc67e0496c7f28baf063eddfcc973a9 --- libsrc/hyperion/Hyperion.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/hyperion/Hyperion.cpp b/libsrc/hyperion/Hyperion.cpp index 3b726ed5..bfe14a9d 100644 --- a/libsrc/hyperion/Hyperion.cpp +++ b/libsrc/hyperion/Hyperion.cpp @@ -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(); }