bu5hm4n pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=9fb91f4a9fafcee5390c23440d337e0040466764
commit 9fb91f4a9fafcee5390c23440d337e0040466764 Author: Marcel Hollerbach <m...@marcel-hollerbach.de> Date: Tue Sep 1 13:25:06 2020 +0200 eldbus: use the const macros we have clang warns about that, its rather harmless, but nicer. --- src/examples/eldbus/dbusmodel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/eldbus/dbusmodel.c b/src/examples/eldbus/dbusmodel.c index cc09d79ae3..1bca10b972 100644 --- a/src/examples/eldbus/dbusmodel.c +++ b/src/examples/eldbus/dbusmodel.c @@ -234,7 +234,7 @@ main(int argc, char **argv EINA_UNUSED) if (efl_model_children_count_get(root)) eina_future_then(efl_model_children_slice_get(root, 0, efl_model_children_count_get(root)), - _slice, (uintptr_t) 0); + _slice, NULL); ecore_main_loop_begin(); efl_del(root); --