Silence a warning
authorMatthias Clasen <matthiasc@src.gnome.org>
Wed, 5 Apr 2006 05:03:33 +0000 (05:03 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 5 Apr 2006 05:03:33 +0000 (05:03 +0000)
ChangeLog
ChangeLog.pre-2-12
tests/tree-test.c

index 1de75e2..d7bc904 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 1de75e2..d7bc904 100644 (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:
index 5bbe734..c5cb105 100644 (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);