Skip to content
Snippets Groups Projects
Commit 5fedab75 authored by Daniel Agar's avatar Daniel Agar Committed by Beat Küng
Browse files

controllib fix sign-compare

parent 57cffa82
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ public:
// delay starts at zero, then increases to LEN
_delay += 1;
if (_delay > (LEN - 1)) {
if (_delay > (int)(LEN - 1)) {
_delay = LEN - 1;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment