eo: Remove trailing newline in ERR message

This commit is contained in:
Jean-Philippe Andre 2017-12-05 16:31:14 +09:00 committed by Sungtaek Hong
parent e8a00f7c15
commit 3e9825cb96
1 changed files with 1 additions and 1 deletions

View File

@ -1290,7 +1290,7 @@ _efl_object_event_callback_priority_add(Eo *obj, Efl_Object_Data *pd,
return EINA_TRUE;
err:
ERR("Tried adding callback with invalid values: cb: %p desc: %p func: %p\n", cb, desc, func);
ERR("Tried adding callback with invalid values: cb: %p desc: %p func: %p", cb, desc, func);
_eo_callback_free(cb);
return EINA_FALSE;
}