diff options
author | Marti Maria <marti.maria@littlecms.com> | 2021-09-14 21:35:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 21:35:09 +0200 |
commit | 83664e473fa4d60534be496b81192106812f88cf (patch) | |
tree | 46778d48bf32120841196331b4630c53b2862f6c | |
parent | c07b7e363cd4ea188876b6aa8f0357c0f0b8d0cb (diff) | |
parent | 0f244078515294ef4880c1d27bbeab63a1fb12ab (diff) | |
download | lcms2-83664e473fa4d60534be496b81192106812f88cf.tar.gz |
Merge pull request #280 from Lynx3d/Lynx3d-copy-alpha-type-mismatch
Thanks for putting all this effort in the issue!
-rw-r--r-- | plugins/fast_float/src/fast_float_tethra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/fast_float/src/fast_float_tethra.c b/plugins/fast_float/src/fast_float_tethra.c index 59b509f..d57eedd 100644 --- a/plugins/fast_float/src/fast_float_tethra.c +++ b/plugins/fast_float/src/fast_float_tethra.c @@ -211,7 +211,7 @@ void FloatCLUTEval(struct _cmstransform_struct* CMMcargo, } if (ain) { - *(cmsFloat32Number*)(out[TotalOut]) = *ain; + *(cmsFloat32Number*)(out[TotalOut]) = *(cmsFloat32Number*)ain; ain += SourceIncrements[TotalOut]; out[TotalOut] += DestIncrements[TotalOut]; } |