Fix warning in cli.cpp
This commit is contained in:
parent
7eb83f1a60
commit
d0397bc23a
1 changed files with 1 additions and 1 deletions
2
cli.cpp
2
cli.cpp
|
|
@ -1196,7 +1196,7 @@ void ApplyOptions(DeviceOptions& options, std::vector<RGBController *>& rgb_cont
|
||||||
if(options.zone < 0)
|
if(options.zone < 0)
|
||||||
{
|
{
|
||||||
start_from = &device->colors[0];
|
start_from = &device->colors[0];
|
||||||
led_count = device->leds.size();
|
led_count = (unsigned int)device->leds.size();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue