From: Matthias Clasen Date: Sat, 11 Feb 2012 02:09:39 +0000 (-0500) Subject: Fix a parameter name mismatch X-Git-Tag: 2.31.18~59 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8cb48f644d66fef98429d2adbf298d3225a25fef;p=platform%2Fupstream%2Fglib.git Fix a parameter name mismatch gtk-doc gets unhappy if parameters aren't named the same in headers, sources and doc comments. --- diff --git a/glib/ghash.h b/glib/ghash.h index 5df648e..b369989 100644 --- a/glib/ghash.h +++ b/glib/ghash.h @@ -79,7 +79,7 @@ void g_hash_table_steal_all (GHashTable *hash_table); gpointer g_hash_table_lookup (GHashTable *hash_table, gconstpointer key); gboolean g_hash_table_contains (GHashTable *hash_table, - gconstpointer lookup_key); + gconstpointer key); gboolean g_hash_table_lookup_extended (GHashTable *hash_table, gconstpointer lookup_key, gpointer *orig_key,