Enlightenment CVS committal

Author  : tilman
Project : e17
Module  : libs/evas

Dir     : e17/libs/evas/src/lib/data


Modified Files:
        evas_hash.c 


Log Message:
a bunch of constness fixes

===================================================================
RCS file: /cvs/e/e17/libs/evas/src/lib/data/evas_hash.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- evas_hash.c 22 Apr 2006 11:08:01 -0000      1.20
+++ evas_hash.c 6 May 2007 11:29:37 -0000       1.21
@@ -109,7 +109,7 @@
        return hash;
      };
    el->key = ((char *)el) + sizeof(struct _Evas_Hash_El);
-   strcpy(el->key, key);
+   strcpy((char *) el->key, key);
    el->data = (void *)data;
    hash_num = _evas_hash_gen(key);
    hash->buckets[hash_num] = evas_object_list_prepend(hash->buckets[hash_num], 
el);



-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to