a few finalizer testcases, old thread implementation uses now VMThread, no mor contex...
[cacao.git] / toolbox / avl.c
index 66cce968fbb0c4bc393f967a47e318df1d786692..7bdae27b50fbbd76138629f051c2980347a83ff7 100644 (file)
@@ -70,7 +70,7 @@ avl_find (const struct avl_table *tree, const void *item)
     {
       int cmp = tree->avl_compare (item, p->avl_data, tree->avl_param);
 
-      if (cmp < 0)
+      if (cmp < 0)  
         p = p->avl_link[0];
       else if (cmp > 0)
         p = p->avl_link[1];