From 05ce97c5c10dc2ff51a4e0ac53e832ea1126f73e Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Thu, 2 Nov 2023 17:52:52 +0000 Subject: [PATCH] ges: discoverer-manager: Use appropriate key hash function Part-of: --- subprojects/gst-editing-services/ges/ges-discoverer-manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-editing-services/ges/ges-discoverer-manager.c b/subprojects/gst-editing-services/ges/ges-discoverer-manager.c index fd8baf619a..241d25a0cc 100644 --- a/subprojects/gst-editing-services/ges/ges-discoverer-manager.c +++ b/subprojects/gst-editing-services/ges/ges-discoverer-manager.c @@ -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); }