elementary: Fix passing wrong parameter
authorChris Michael <cp.michael@samsung.com>
Wed, 14 Oct 2015 13:58:20 +0000 (09:58 -0400)
committerChris Michael <cp.michael@samsung.com>
Wed, 14 Oct 2015 13:58:20 +0000 (09:58 -0400)
Summary: clang reports passing EINA_FALSE here is being treated as an
Eo object, so pass NULL instead

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
src/lib/elm_atspi_bridge.c

index 86042e1..2ced50d 100644 (file)
@@ -2805,7 +2805,7 @@ _collection_inorder(Eo *collection, struct collection_match_rule *rule, Eina_Lis
 
   if (max == 0 || count < max)
     count = _collection_sort_order_canonical(rule, list, count, max,
-                                    obj, idx + 1, EINA_TRUE, EINA_FALSE, EINA_TRUE, traverse);
+                                    obj, idx + 1, EINA_TRUE, NULL, EINA_TRUE, traverse);
 
   return count;
 }