stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=a939e0c5fb094a8881e12ceba7d9aa9b01de528f
commit a939e0c5fb094a8881e12ceba7d9aa9b01de528f Author: Stefan Schmidt <[email protected]> Date: Fri Nov 7 14:51:15 2014 +0100 examples/eldbus: Make sure Eldbus_Service_Interface_Desc is initialized for all members The property_set callback might be automatically set to NULL here but making it explicit avoids confusion on how many members this description has. --- src/examples/eldbus/complex-types-server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/examples/eldbus/complex-types-server.c b/src/examples/eldbus/complex-types-server.c index 19aaa84..fb87b71 100644 --- a/src/examples/eldbus/complex-types-server.c +++ b/src/examples/eldbus/complex-types-server.c @@ -325,7 +325,7 @@ static const Eldbus_Property properties[] = { }; static const Eldbus_Service_Interface_Desc iface_desc = { - IFACE, methods, NULL, properties, _properties_get + IFACE, methods, NULL, properties, _properties_get, NULL }; static Eina_Bool _emit_changed(void *data) --
