Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FastLED/FastLED.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--FastLED.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/FastLED.cpp b/FastLED.cpp
index c31f9296..949372ea 100644
--- a/FastLED.cpp
+++ b/FastLED.cpp
@@ -125,7 +125,7 @@ void CFastLED::delay(unsigned long ms) {
yield();
#endif
}
- while((millis()-start) < ms) {
+ while((millis()-start) < ms);
}
void CFastLED::setTemperature(const struct CRGB & temp) {