aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Kukawka <danny.kukawka@web.de>2008-03-13 15:45:40 +0100
committerDanny Kukawka <danny.kukawka@web.de>2008-03-13 15:45:40 +0100
commite0a9d9155f7d4ce6073849de37952b8a3ac5036f (patch)
tree6c54eb5e6e158bb61bba5977a6edef4d2bd8b32f
parentAdd backwards compat wrapper for g_hash_table_get_keys (diff)
downloadgentoo-hal-e0a9d9155f7d4ce6073849de37952b8a3ac5036f.tar.gz
gentoo-hal-e0a9d9155f7d4ce6073849de37952b8a3ac5036f.tar.bz2
gentoo-hal-e0a9d9155f7d4ce6073849de37952b8a3ac5036f.zip
fixed typo from commit d2b2baf9912b36def7856b6bfa5c60fc942bbcba
Fixed typo from commit d2b2baf9912b36def7856b6bfa5c60fc942bbcba s/(GHFunc)list_values/(GHFunc)list_keys/ .
-rw-r--r--hald/device_store.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hald/device_store.c b/hald/device_store.c
index 730e1f9d..c351489b 100644
--- a/hald/device_store.c
+++ b/hald/device_store.c
@@ -532,7 +532,7 @@ inline static GList*
g_hash_table_get_keys (GHashTable *hash)
{
GList *keys = NULL;
- g_hash_table_foreach (hash, (GHFunc)list_values, &keys);
+ g_hash_table_foreach (hash, (GHFunc)list_keys, &keys);
return keys;
}
#endif