summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2012-02-10 21:09:39 -0500
committerMatthias Clasen <mclasen@redhat.com>2012-02-10 21:09:39 -0500
commit8cb48f644d66fef98429d2adbf298d3225a25fef (patch)
tree9ca7a4042f0c10b6b0c11e2d171861669f02e59e
parent6293105593e68165590c66bdd40c0df7f822b1e1 (diff)
downloadglib-8cb48f644d66fef98429d2adbf298d3225a25fef.tar.gz
Fix a parameter name mismatch
gtk-doc gets unhappy if parameters aren't named the same in headers, sources and doc comments.
-rw-r--r--glib/ghash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/ghash.h b/glib/ghash.h
index 5df648ecc..b369989b0 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,