ephysic: comparing with same statement.

Summary:
There is no effect of comparing with same expression.
@fix

Reviewers: cedric

Reviewed By: cedric

Subscribers: cedric, jpeg

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

Signed-off-by: Cedric Bail <cedric@osg.samsung.com>
This commit is contained in:
Subodh Kumar 2017-10-09 16:40:11 -07:00 committed by Cedric Bail
parent c5e3196731
commit a91a4b4ca5
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ _ephysics_body_evas_stacking_sort_cb(const void *d1, const void *d2)
if (!stacking2) return -1;
if (stacking1->stacking < stacking2->stacking) return -1;
if (stacking1->stacking > stacking1->stacking) return 1;
if (stacking1->stacking > stacking2->stacking) return 1;
return 0;
}