Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmscnvrt.c')
-rw-r--r--src/cmscnvrt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmscnvrt.c b/src/cmscnvrt.c
index 8dadc87..62b61a6 100644
--- a/src/cmscnvrt.c
+++ b/src/cmscnvrt.c
@@ -693,7 +693,7 @@ cmsPipeline* BlackPreservingKOnlyIntents(cmsContext ContextID,
nGridPoints = _cmsReasonableGridpointsByColorspace(cmsSigCmykData, dwFlags);
// Create the CLUT. 16 bits
- CLUT = cmsStageAllocCLut16bit(ContextID, nGridPoints, 4, 4, NULL);
+ CLUT = cmsStageAllocCLut16bit(ContextID, nGridPoints, 4, 4, NULL, 0);
if (CLUT == NULL) goto Error;
// This is the one and only MPE in this LUT
@@ -905,7 +905,7 @@ cmsPipeline* BlackPreservingKPlaneIntents(cmsContext ContextID,
nGridPoints = _cmsReasonableGridpointsByColorspace(cmsSigCmykData, dwFlags);
- CLUT = cmsStageAllocCLut16bit(ContextID, nGridPoints, 4, 4, NULL);
+ CLUT = cmsStageAllocCLut16bit(ContextID, nGridPoints, 4, 4, NULL, 0);
if (CLUT == NULL) goto Cleanup;
cmsPipelineInsertStage(Result, cmsAT_BEGIN, CLUT);