Use correct type.

SVN revision: 38338
This commit is contained in:
Cedric BAIL 2008-12-29 08:53:01 +00:00
parent c80770901d
commit e537976f58
1 changed files with 2 additions and 1 deletions

View File

@ -44,7 +44,8 @@ static int _eina_convert_init_count = 0;
static inline void reverse(char s[], int length)
{
int c, i, j;
int i, j;
char c;
for (i = 0, j = length - 1; i < j; i++, j--)
{