raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f1b0e638f17ce5d7a8215407c457a8950b229514
commit f1b0e638f17ce5d7a8215407c457a8950b229514 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Tue Aug 6 20:58:57 2019 +0100 systray - dont prunt null name which is usless fixes warning and removes always null string. --- src/modules/systray/e_mod_notifier_host_dbus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/systray/e_mod_notifier_host_dbus.c b/src/modules/systray/e_mod_notifier_host_dbus.c index d00bc26c5..82589943e 100644 --- a/src/modules/systray/e_mod_notifier_host_dbus.c +++ b/src/modules/systray/e_mod_notifier_host_dbus.c @@ -224,7 +224,7 @@ props_get_all_cb(void *data, const Eldbus_Message *msg, Eldbus_Pending *pending eldbus_message_iter_dict_iterate(dict, "sv", item_prop_get, item); if (!item->menu_path) - ERR("Notifier item %s doesn't have menu path.", item->menu_path); + ERR("Notifier item doesn't have menu path."); conn = eldbus_object_connection_get(eldbus_proxy_object_get(item->proxy)); item->menu_data = e_dbusmenu_load(conn, item->bus_id, item->menu_path, item); --
