revert this, the index pointer can be negative

SVN revision: 30476
This commit is contained in:
kiwi 2007-06-27 14:56:14 +00:00 committed by kiwi
parent a001af9e23
commit 2cdf35aad4
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 (index <= 0)
if (iindex <= 0)
return 0;
d = buf[index--];