Util: Placate Coverity a bit more

This commit is contained in:
Vicki Pfau 2025-03-08 02:09:28 -08:00
parent ae3a5988d0
commit 1bbdbd4482

View File

@ -904,10 +904,10 @@ uint32_t mColorConvert(uint32_t color, enum mColorFormat from, enum mColorFormat
return color; return color;
} }
int r = 0; uint32_t r = 0;
int g = 0; uint32_t g = 0;
int b = 0; uint32_t b = 0;
int a = 0xFF; uint32_t a = 0xFF;
switch (from) { switch (from) {
case mCOLOR_ARGB8: case mCOLOR_ARGB8: