From f4088a1f744cf47fcc24a9e3ba56d45ba9ce087a Mon Sep 17 00:00:00 2001 From: "Carsten Haitzler (Rasterman)" Date: Sat, 11 Feb 2017 22:21:48 +0900 Subject: [PATCH] evas smooth scaler - fix warning where indenting is misleading indeed the indenting is misleading. fix. --- src/lib/evas/common/evas_scale_smooth_scaler_up.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/lib/evas/common/evas_scale_smooth_scaler_up.c b/src/lib/evas/common/evas_scale_smooth_scaler_up.c index f059e8f..af1b351 100644 --- a/src/lib/evas/common/evas_scale_smooth_scaler_up.c +++ b/src/lib/evas/common/evas_scale_smooth_scaler_up.c @@ -341,12 +341,12 @@ p0 = p1 = p2 = p3 = *p; if ((sx + 1) < srw) p1 = *(p + 1); - if ((sy + 1) < srh) - { - p2 = *q; p3 = p2; - if ((sx + 1) < srw) - p3 = *(q + 1); - } + if ((sy + 1) < srh) + { + p2 = *q; p3 = p2; + if ((sx + 1) < srw) + p3 = *(q + 1); + } if (p0 | p1) p0 = INTERP_256(ax, p1, p0); if (p2 | p3) -- 2.7.4