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 'plugins/fast_float/src/fast_float_lab.c')
-rw-r--r--plugins/fast_float/src/fast_float_lab.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/fast_float/src/fast_float_lab.c b/plugins/fast_float/src/fast_float_lab.c
index 553d5fe..d392a84 100644
--- a/plugins/fast_float/src/fast_float_lab.c
+++ b/plugins/fast_float/src/fast_float_lab.c
@@ -316,7 +316,10 @@ void LabCLUTEval(struct _cmstransform_struct* CMMcargo,
}
if (xin)
- *out[TotalOut] = *xin;
+ {
+ *(cmsFloat32Number*) (out[TotalOut]) = *xin;
+ out[TotalOut] += DestIncrements[TotalOut];
+ }
}
strideIn += Stride->BytesPerLineIn;