projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8904083
)
elementary: Fix passing wrong parameter
author
Chris Michael
<cp.michael@samsung.com>
Wed, 14 Oct 2015 13:58:20 +0000
(09:58 -0400)
committer
Chris 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
patch
|
blob
|
history
diff --git
a/src/lib/elm_atspi_bridge.c
b/src/lib/elm_atspi_bridge.c
index
86042e1
..
2ced50d
100644
(file)
--- a/
src/lib/elm_atspi_bridge.c
+++ b/
src/lib/elm_atspi_bridge.c
@@
-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;
}