Enlightenment CVS committal

Author  : raster
Project : e17
Module  : libs/evas

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


Modified Files:
        evas_object_list.c 


Log Message:


david stevenson's tidyup

===================================================================
RCS file: /cvsroot/enlightenment/e17/libs/evas/src/lib/data/evas_object_list.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- evas_object_list.c  3 Apr 2005 14:22:17 -0000       1.2
+++ evas_object_list.c  4 Apr 2005 16:01:34 -0000       1.3
@@ -5,11 +5,10 @@
 evas_object_list_append(void *in_list, void *in_item)
 {
    Evas_Object_List *l, *new_l;
-   Evas_Object_List *list, *item;
+   Evas_Object_List *list;
    
    list = in_list;
-   item = in_item;
-   new_l = item;
+   new_l = in_item;
    new_l->next = NULL;
    if (!list) 
      {
@@ -29,11 +28,10 @@
 evas_object_list_prepend(void *in_list, void *in_item)
 {
    Evas_Object_List *new_l;
-   Evas_Object_List *list, *item;
+   Evas_Object_List *list;
    
    list = in_list;
-   item = in_item;   
-   new_l = item;
+   new_l = in_item;
    new_l->prev = NULL;
    if (!list) 
      {




-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to