ghash: minor docs tweak
authorRyan Lortie <desrt@desrt.ca>
Thu, 11 Dec 2014 23:49:16 +0000 (18:49 -0500)
committerRyan Lortie <desrt@desrt.ca>
Thu, 11 Dec 2014 23:50:07 +0000 (18:50 -0500)
We should not advise people to cast the result of
g_hash_table_get_keys_as_array() to a type that looks suitable for use
with g_strfreev().  Advise to use (const gchar **) instead.

glib/ghash.c

index b42dd14..913f739 100644 (file)
@@ -1736,7 +1736,7 @@ g_hash_table_get_keys (GHashTable *hash_table)
  * %NULL was used as the value for a key.
  *
  * Note: in the common case of a string-keyed #GHashTable, the return
- * value of this function can be conveniently cast to (gchar **).
+ * value of this function can be conveniently cast to (const gchar **).
  *
  * You should always free the return result with g_free().  In the
  * above-mentioned case of a string-keyed hash table, it may be