eina: same expression on both statement.
authorSubodh Kumar <s7158.kumar@samsung.com>
Mon, 9 Oct 2017 23:36:54 +0000 (16:36 -0700)
committerCedric Bail <cedric@osg.samsung.com>
Mon, 9 Oct 2017 23:36:57 +0000 (16:36 -0700)
Summary:
Comparing with same expression is avoided.
@fix

Reviewers: cedric

Subscribers: jpeg

Differential Revision: https://phab.enlightenment.org/D5268

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
src/examples/eina/eina_tiler_02.c

index 8266807..fd46477 100644 (file)
@@ -178,9 +178,9 @@ void rect_update()
 
    for (i = 0; i < 2; i ++)
      {
-        if (rects[rect_idx][0][i].w > 0 && rects[rect_idx][0][i].w > 0)
+        if (rects[rect_idx][0][i].w > 0 && rects[rect_idx][0][i].h > 0)
           eina_tiler_rect_add(tiler1, &rects[rect_idx][0][i]);
-        if (rects[rect_idx][1][i].w > 0 && rects[rect_idx][1][i].w > 0)
+        if (rects[rect_idx][1][i].w > 0 && rects[rect_idx][1][i].h > 0)
           eina_tiler_rect_add(tiler2, &rects[rect_idx][1][i]);
      }