Fix typo that leads to incorrect behavior.

By: Brett Nash (iindex-to-many-is.patch)


SVN revision: 31697
This commit is contained in:
Gustavo Sverzut Barbieri 2007-09-13 14:24:15 +00:00
parent b09e8f2f45
commit 0c404433e7
1 changed files with 1 additions and 1 deletions

View File

@ -185,7 +185,7 @@ evas_common_font_utf8_get_prev(unsigned char *buf, int *iindex)
int index = *iindex, len, r;
unsigned char d, d2, d3, d4;
if (iindex <= 0)
if (index <= 0)
return 0;
d = buf[index--];