Commit 1280d764 authored by Rémi Duraffort's avatar Rémi Duraffort

remove unused function

parent 1f4bd81b
...@@ -402,17 +402,6 @@ void vlc_object_kill( vlc_object_t *p_this ) ...@@ -402,17 +402,6 @@ void vlc_object_kill( vlc_object_t *p_this )
} }
} }
static int objnamecmp(const vlc_object_t *obj, const char *name)
{
char *objname = vlc_object_get_name(obj);
if (objname == NULL)
return INT_MIN;
int ret = strcmp (objname, name);
free (objname);
return ret;
}
#undef vlc_object_find_name #undef vlc_object_find_name
/** /**
* Finds a named object and increment its reference count. * Finds a named object and increment its reference count.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment