Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore


Modified Files:
        ecore_hash.c 


Log Message:
Rename another ecore_hash function.

===================================================================
RCS file: /cvs/e/e17/libs/ecore/src/lib/ecore/ecore_hash.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- ecore_hash.c        8 May 2008 04:01:01 -0000       1.42
+++ ecore_hash.c        8 May 2008 04:04:58 -0000       1.43
@@ -19,7 +19,7 @@
                < ((double)ECORE_HASH_CHAIN_MAX * 0.375) : FALSE)
 
 /* Private hash manipulation functions */
-static int _ecore_hash_add_node(Ecore_Hash *hash, Ecore_Hash_Node *node);
+static int _ecore_hash_node_add(Ecore_Hash *hash, Ecore_Hash_Node *node);
 static Ecore_Hash_Node * _ecore_hash_node_get(Ecore_Hash *hash, const void 
*key);
 static int _ecore_hash_increase(Ecore_Hash *hash);
 static int _ecore_hash_decrease(Ecore_Hash *hash);
@@ -163,7 +163,7 @@
      {
        node = _ecore_hash_node_new(key, value);
        if (node)
-         ret = _ecore_hash_add_node(hash, node);
+         ret = _ecore_hash_node_add(hash, node);
      }
 
    return ret;
@@ -204,7 +204,7 @@
                  free(old);
               }
             else
-              _ecore_hash_add_node(hash, old);
+              _ecore_hash_node_add(hash, old);
          }
      }
    FREE(set->buckets);
@@ -411,7 +411,7 @@
  * @return Returns FALSE on error, TRUE on success
  */
 static int
-_ecore_hash_add_node(Ecore_Hash *hash, Ecore_Hash_Node *node)
+_ecore_hash_node_add(Ecore_Hash *hash, Ecore_Hash_Node *node)
 {
    unsigned int hash_val;
 
@@ -789,7 +789,7 @@
          {
             old_table[i] = old->next;
             old->next = NULL;
-            _ecore_hash_add_node(hash, old);
+            _ecore_hash_node_add(hash, old);
          }
      }
 



-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to