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.
This commit is contained in:
Stefan Schmidt 2014-11-07 14:51:15 +01:00
parent ed48b95048
commit fdd256cb3b
1 changed files with 1 additions and 1 deletions

View File

@ -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)