eina: same expression on both statement.

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>
This commit is contained in:
Subodh Kumar 2017-10-09 16:36:54 -07:00 committed by Cedric Bail
parent 11d553e3c3
commit c321def5fc
1 changed files with 2 additions and 2 deletions

View 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]);
}