Skip to content
Snippets Groups Projects
Commit 933b3af9 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard
Browse files

mscms: Added missing breaks (Coverity).

parent aca1b275
Branches
Tags
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment