diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-05 05:03:33 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-04-05 05:03:33 +0000 |
commit | 973b4b8442c3a9b6fb0becce6d7c964a7fe4428e (patch) | |
tree | 471785167c02b904cc48f8f514bad45c74c6e8c0 /tests | |
parent | f3ed45cbfb4113be491d6b681224cff666feffe2 (diff) |
Silence a warning
Diffstat (limited to 'tests')
-rw-r--r-- | tests/tree-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tree-test.c b/tests/tree-test.c index 5bbe73434..c5cb105aa 100644 --- a/tests/tree-test.c +++ b/tests/tree-test.c @@ -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); |