Evas engine software generic: Fix clang warning.

Double parenthesis comparison is reserved for evaluation for assignment, not just comparison.
So for example you should do ((x = 2)) and (x == 2), but not ((x == 2)) or (x = 2).
This commit is contained in:
Tom Hacohen 2015-10-09 12:41:29 +01:00
parent 7dc60520f6
commit 3301d869df
1 changed files with 1 additions and 1 deletions

View File

@ -3445,7 +3445,7 @@ _merge_rects(Render_Engine_Merge_Mode merge_mode,
// between multiple update regions to render and total pixels to render.
if (rects)
{
if ((merge_mode == MERGE_BOUNDING)
if (merge_mode == MERGE_BOUNDING
// disable smart updates for debugging
// || (merge_mode == MERGE_SMART)
)