From 39adf3627de5caee7f9a7eeb190cc7793d406be7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98yvind=20Kol=C3=A5s?= Date: Sat, 14 Jan 2017 21:02:24 +0100 Subject: [PATCH] app: use hypotf in lhc chroma blend mode --- app/operations/layer-modes/gimpoperationlchchroma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/operations/layer-modes/gimpoperationlchchroma.c b/app/operations/layer-modes/gimpoperationlchchroma.c index b1bf8d76f3..5a08911376 100644 --- a/app/operations/layer-modes/gimpoperationlchchroma.c +++ b/app/operations/layer-modes/gimpoperationlchchroma.c @@ -110,7 +110,7 @@ chroma_pre_process (const Babl *from_fish, { gfloat A2 = layer_lab[4 * i + 1]; gfloat B2 = layer_lab[4 * i + 2]; - gfloat c2 = hypot (A2, B2); + gfloat c2 = hypotf (A2, B2); gfloat A = c2 * A1 / c1; gfloat B = c2 * B1 / c1;