diff options
author | Lynx3d <151539+Lynx3d@users.noreply.github.com> | 2021-09-14 20:14:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-14 20:14:47 +0200 |
commit | 0f244078515294ef4880c1d27bbeab63a1fb12ab (patch) | |
tree | 46778d48bf32120841196331b4630c53b2862f6c | |
parent | c07b7e363cd4ea188876b6aa8f0357c0f0b8d0cb (diff) | |
download | lcms2-0f244078515294ef4880c1d27bbeab63a1fb12ab.tar.gz |
Fix copy alpha type mismatch in FloatCLUTEval
-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]; } |