diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-02 16:25:03 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2002-11-02 16:25:03 +0800 |
commit | 9c73777f2268b5bf2622f893e2a3ba7d0f720572 (patch) | |
tree | f81b79f19b87f84b4429d329b3fc0f9ff7946060 /e-util/e-memory.c | |
parent | 236c15d106b4e740d4e3996e0649334ca8e13876 (diff) | |
download | gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.gz gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.tar.zst gsoc2013-evolution-9c73777f2268b5bf2622f893e2a3ba7d0f720572.zip |
First big sync of my GNOME 2 porting work (incomplete, and still
pretty broken).
Weeeeee!
svn path=/trunk/; revision=18503
Diffstat (limited to 'e-util/e-memory.c')
-rw-r--r-- | e-util/e-memory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/e-util/e-memory.c b/e-util/e-memory.c index 17385fa7ba..cf32147d75 100644 --- a/e-util/e-memory.c +++ b/e-util/e-memory.c @@ -294,7 +294,7 @@ e_memchunk_clean(MemChunk *m) /* now, scan all free nodes, and count them in their tree node */ while (f) { - ci = g_tree_search(tree, (GSearchFunc)tree_search, f); + ci = g_tree_search(tree, (GCompareFunc) tree_search, f); if (ci) { ci->count += f->atoms; } else { |