eina: Fixes bad format strings in *printf() calls in example.
authorcedric <cedric>
Thu, 4 Oct 2012 01:37:34 +0000 (01:37 +0000)
committercedric <cedric@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 4 Oct 2012 01:37:34 +0000 (01:37 +0000)
Patch by Igor Murzov <e-mail@date.by>

git-svn-id: http://svn.enlightenment.org/svn/e/trunk/eina@77387 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/examples/eina_array_02.c

index 6b2903b..6decdd3 100644 (file)
@@ -47,7 +47,7 @@ main(int argc, char **argv)
 
    eina_array_remove(array, keep, NULL);
    EINA_ARRAY_ITER_NEXT(array, i, item, iterator)
-     printf("item #%d: %s\n", i, item);
+     printf("item #%u: %s\n", i, item);
 
    eina_array_free(array);