evas-generic: Fix gcc wanring

Gcc suggets parens around comparison value. Silence gcc warning.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-13 10:06:12 -04:00
parent ea7fe4efdc
commit e3b00d37b7
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ void poppler_load_image(int size_w EINA_UNUSED, int size_h EINA_UNUSED)
int bit = x & 0x7;
int c = (*src & (1 << bit)) ? 0xFF : 0x00;
*dst++ = ARGB_JOIN(0xFF, c, c, c);
if (x & 0x7 == 0x7) src++;
if ((x & 0x7) == 0x7) src++;
}
}
}