Fix a bunch of warnings

This commit is contained in:
Adam Honse
2021-04-29 13:42:49 -05:00
parent 37d58ee1a6
commit 5616f547e4
21 changed files with 32 additions and 42 deletions

View File

@@ -204,7 +204,7 @@ void CMARGBController::SetLedsDirect(RGBColor *led_colours, unsigned int led_cou
/*---------------------------------------------*\
| Set up the RGB triplets to send |
\*---------------------------------------------*/
for(int i = 0; i < led_count; i++)
for(unsigned int i = 0; i < led_count; i++)
{
RGBColor colour = led_colours[i];