summaryrefslogtreecommitdiffstats
path: root/bindings
diff options
context:
space:
mode:
authorBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-01-04 13:34:51 +0100
committerBenjamin Dauvergne <bdauvergne@entrouvert.com>2011-01-04 13:34:51 +0100
commit03b15e3886d8f65047fc0abced2e20f16fcb1ecf (patch)
tree235c94e298cf4f1c08c3cbdf376a305edeb9f734 /bindings
parente3a035ba6ae5202482d9512d69d74d945e3fdf13 (diff)
downloadlasso-03b15e3886d8f65047fc0abced2e20f16fcb1ecf.tar.gz
lasso-03b15e3886d8f65047fc0abced2e20f16fcb1ecf.tar.xz
lasso-03b15e3886d8f65047fc0abced2e20f16fcb1ecf.zip
[bindings perl] fix get_hash_of_objects
Diffstat (limited to 'bindings')
-rw-r--r--bindings/perl/ghashtable_handling.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/perl/ghashtable_handling.c b/bindings/perl/ghashtable_handling.c
index 541041d8..8479a59e 100644
--- a/bindings/perl/ghashtable_handling.c
+++ b/bindings/perl/ghashtable_handling.c
@@ -119,6 +119,6 @@ get_hash_of_objects(GHashTable *hash)
HV *hv;
hv = newHV();
- g_hash_table_foreach(hash, __ht_foreach_get_hos, hv);
+ g_hash_table_foreach(hash, __ht_foreach_get_hoo, hv);
return hv;
}