evas: remove warning, no need for double ().

This commit is contained in:
Cedric Bail 2013-04-12 11:24:14 +09:00
parent 483029a717
commit d1c502fe26
1 changed files with 1 additions and 1 deletions

View File

@ -7015,7 +7015,7 @@ evas_textblock_cursor_word_start(Evas_Textblock_Cursor *cur)
set_wordbreaks_utf32((const utf32_t *) text, len, lang, breaks);
}
for (i = cur->pos; (BREAK_AFTER(i)); i--)
for (i = cur->pos; BREAK_AFTER(i); i--)
{
if (i == 0) break;
}