Use correct type.
authorcedric <cedric>
Mon, 29 Dec 2008 08:53:01 +0000 (08:53 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 29 Dec 2008 08:53:01 +0000 (08:53 +0000)
git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@38338 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/eina_convert.c

index 7b13ba7..75cf810 100644 (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--)
      {