eldbus: Fix copy and paste error.

We are in the remove case here. The interfaces_added looks like a missed change
from the copy and paste of the add case.

CID 1039671
This commit is contained in:
Stefan Schmidt 2013-08-09 10:27:54 +01:00
parent d067c28e74
commit d7d347da0a
1 changed files with 1 additions and 1 deletions

View File

@ -421,7 +421,7 @@ eldbus_object_event_callback_add(Eldbus_Object *obj, Eldbus_Object_Event_Type ty
ELDBUS_FDO_INTERFACE_OBJECT_MANAGER,
"InterfacesRemoved",
_cb_interfaces_removed, obj);
EINA_SAFETY_ON_NULL_RETURN(obj->interfaces_added);
EINA_SAFETY_ON_NULL_RETURN(obj->interfaces_removed);
eldbus_signal_handler_match_extra_set(obj->interfaces_removed,
"arg0", obj->path, NULL);
break;