Commit 933b3af9 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

mscms: Added missing breaks (Coverity).

parent aca1b275
......@@ -384,6 +384,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count,
ret = FALSE;
break;
}
break;
}
case COLOR_Lab:
{
......@@ -399,6 +400,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count,
ret = FALSE;
break;
}
break;
}
case COLOR_GRAY:
{
......@@ -414,6 +416,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count,
ret = FALSE;
break;
}
break;
}
case COLOR_CMYK:
{
......@@ -429,6 +432,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count,
ret = FALSE;
break;
}
break;
}
case COLOR_XYZ:
{
......@@ -444,6 +448,7 @@ BOOL WINAPI TranslateColors( HTRANSFORM handle, PCOLOR in, DWORD count,
ret = FALSE;
break;
}
break;
}
default:
FIXME("unhandled input/output pair: %d/%d\n", input_type, output_type);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment