Removed check on return parameter NULLity. Calling this function means that the parameter returned is wanted.

Signed-off-by: Daniel Zaoui <daniel.zaoui@samsung.com>

SVN revision: 78607
This commit is contained in:
Daniel Zaoui 2012-10-29 09:37:43 +00:00 committed by Daniel Zaoui
parent 716b093d3e
commit dbbc30644b
1 changed files with 2 additions and 2 deletions

View File

@ -2067,10 +2067,10 @@ _type_get(Eo *eo_obj EINA_UNUSED, void *_pd, va_list *list)
const char **type = va_arg(*list, const char **);
if (obj->delete_me)
{
if (type) *type = "";
*type = "";
return;
}
if (type) *type = obj->type;
*type = obj->type;
}
static void