Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_desk.c 


Log Message:
No need to cast.

===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_desk.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -3 -r1.26 -r1.27
--- e_desk.c    19 Apr 2005 10:45:39 -0000      1.26
+++ e_desk.c    22 Apr 2005 07:54:08 -0000      1.27
@@ -143,7 +143,7 @@
    if ((x >= zone->desk_x_count) || (y >= zone->desk_y_count))
      return NULL;
 
-   return (E_Desk *)zone->desks[x + (y * zone->desk_x_count)];
+   return zone->desks[x + (y * zone->desk_x_count)];
 }
 
 void




-------------------------------------------------------
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