Skip to content

Commit

Permalink
Remove duplicate check
Browse files Browse the repository at this point in the history
A typo or a bad merge... thanks to Robin Watts for pointing out.
  • Loading branch information
mm2 committed Mar 7, 2024
1 parent df0ffb1 commit 2e7d174
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cmscnvrt.c
Original file line number Diff line number Diff line change
Expand Up @@ -720,8 +720,7 @@ int BlackPreservingGrayOnlySampler(CMSREGISTER const cmsUInt16Number In[], CMSRE
static
cmsBool is_cmyk_devicelink(cmsHPROFILE hProfile)
{
return cmsGetDeviceClass(hProfile) == cmsSigLinkClass &&
cmsGetColorSpace(hProfile) == cmsSigCmykData &&
return cmsGetDeviceClass(hProfile) == cmsSigLinkClass &&
cmsGetColorSpace(hProfile) == cmsSigCmykData;
}

Expand Down

0 comments on commit 2e7d174

Please sign in to comment.