Evas: remove extra parenthesis

SVN revision: 65456
This commit is contained in:
Vincent Torri 2011-11-20 16:59:01 +00:00
parent 5b06c1947b
commit b5d99fd6f9
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ _load(Image_Entry *ie, const char *file, const char *key, int *error, Eina_Bool
len = strlen(buf);
if (len > 0)
{
if ((buf[len - 1] == '\n')) buf[len - 1] = 0;
if (buf[len - 1] == '\n') buf[len - 1] = 0;
if (!strncmp(buf, "size ", 5))
{
int tw = 0, th = 0;