From 4e2d068f00a49e16324149e6f98a5941ab4e631a Mon Sep 17 00:00:00 2001 From: Cosimo Cecchi Date: Fri, 13 Jun 2008 16:57:24 +0200 Subject: [PATCH] Use right hashing function for the hash table in MMHit --- src/mm-hit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mm-hit.c b/src/mm-hit.c index 4bf794c..5623698 100644 --- a/src/mm-hit.c +++ b/src/mm-hit.c @@ -59,7 +59,7 @@ mm_hit_init (MMHit *h) { MMHitDetails *details = h->details = MM_HIT_GET_PRIVATE (h); - details->attributes = g_hash_table_new_full (g_str_hash, g_direct_equal, NULL, pair_free); + details->attributes = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, pair_free); } static void -- 2.11.4.GIT