ges: discoverer-manager: Use appropriate key hash function

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5608>
This commit is contained in:
Philippe Normand 2023-11-02 17:52:52 +00:00 committed by GStreamer Marge Bot
parent b8a7b2c9e2
commit 05ce97c5c1

View file

@ -238,7 +238,7 @@ ges_discoverer_manager_class_init (GESDiscovererManagerClass * klass)
void
ges_discoverer_manager_init (GESDiscovererManager * self)
{
self->discoverers = g_hash_table_new_full (g_direct_hash, g_str_equal,
self->discoverers = g_hash_table_new_full (g_direct_hash, g_direct_equal,
NULL, (GDestroyNotify) ges_discoverer_data_unref);
}