Silence a warning

This commit is contained in:
Matthias Clasen 2006-04-05 05:03:33 +00:00
parent f3ed45cbfb
commit 973b4b8442
3 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* tests/tree-test.c: Silence a warning
2006-04-04 Matthias Clasen <mclasen@redhat.com>
* glib/glib.symbols:

View File

@ -1,3 +1,7 @@
2006-04-05 Matthias Clasen <mclasen@redhat.com>
* tests/tree-test.c: Silence a warning
2006-04-04 Matthias Clasen <mclasen@redhat.com>
* glib/glib.symbols:

View File

@ -206,7 +206,7 @@ main (int argc,
g_tree_destroy (tree);
tree = g_tree_new_full (my_compare, NULL,
tree = g_tree_new_full ((GCompareDataFunc)my_compare, NULL,
my_key_destroy,
my_value_destroy);