summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-11-17 19:38:12 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2010-11-17 19:38:12 +0100
commit33dcd98bc54d38a9f0fe0a6e1fcd5814d6e3ce9c (patch)
tree1c5955697324e2a89991ba900ae8deffc9eec817 /bindings
parentfc8c6d877e703a03082f89bc61c7f56805ad11ae (diff)
downloadlasso-33dcd98bc54d38a9f0fe0a6e1fcd5814d6e3ce9c.tar.gz
lasso-33dcd98bc54d38a9f0fe0a6e1fcd5814d6e3ce9c.tar.xz
lasso-33dcd98bc54d38a9f0fe0a6e1fcd5814d6e3ce9c.zip
[bindings] add missing static modifier for g_hash_table_get_values replacement
Diffstat (limited to 'bindings')
-rw-r--r--bindings/ghashtable.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/ghashtable.h b/bindings/ghashtable.h
index 27f37a3f..ef9133f1 100644
--- a/bindings/ghashtable.h
+++ b/bindings/ghashtable.h
@@ -34,7 +34,7 @@ static gboolean return_true(G_GNUC_UNUSED gpointer a, G_GNUC_UNUSED gpointer b,
return TRUE;
}
-void
+static void
g_hash_table_remove_all (GHashTable *hash_table)
{
lasso_return_if_fail(hash_table != NULL);
@@ -63,7 +63,7 @@ g_hash_table_get_keys (GHashTable *hash_table)
return retval;
}
-GList *
+static GList *
g_hash_table_get_values (GHashTable *hash_table)
{
GHashNode *node;