diff options
author | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-02-11 22:21:48 +0900 |
---|---|---|
committer | Carsten Haitzler (Rasterman) <raster@rasterman.com> | 2017-02-12 00:29:49 +0900 |
commit | f4088a1f744cf47fcc24a9e3ba56d45ba9ce087a (patch) | |
tree | a5d1d1715a0c197b13d6c7a61b0ed1af612e8061 /src/lib/evas/common | |
parent | 40af2935af65fccd51db725f82a002de0f81b1f5 (diff) |
evas smooth scaler - fix warning where indenting is misleading
indeed the indenting is misleading. fix.
Diffstat (limited to 'src/lib/evas/common')
-rw-r--r-- | src/lib/evas/common/evas_scale_smooth_scaler_up.c | 12 |
1 files 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 f059e8f3bf..af1b351a3a 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 @@ | |||
341 | p0 = p1 = p2 = p3 = *p; | 341 | p0 = p1 = p2 = p3 = *p; |
342 | if ((sx + 1) < srw) | 342 | if ((sx + 1) < srw) |
343 | p1 = *(p + 1); | 343 | p1 = *(p + 1); |
344 | if ((sy + 1) < srh) | 344 | if ((sy + 1) < srh) |
345 | { | 345 | { |
346 | p2 = *q; p3 = p2; | 346 | p2 = *q; p3 = p2; |
347 | if ((sx + 1) < srw) | 347 | if ((sx + 1) < srw) |
348 | p3 = *(q + 1); | 348 | p3 = *(q + 1); |
349 | } | 349 | } |
350 | if (p0 | p1) | 350 | if (p0 | p1) |
351 | p0 = INTERP_256(ax, p1, p0); | 351 | p0 = INTERP_256(ax, p1, p0); |
352 | if (p2 | p3) | 352 | if (p2 | p3) |