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 9f67419ab3
commit a939e0c5fb
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 = { 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) static Eina_Bool _emit_changed(void *data)