Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir     : e16/e/src


Modified Files:
        e16-ecore_list.c 


Log Message:
Style (lint).

===================================================================
RCS file: /cvs/e/e16/e/src/e16-ecore_list.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e16-ecore_list.c    27 Feb 2006 19:34:49 -0000      1.3
+++ e16-ecore_list.c    16 Apr 2006 23:00:45 -0000      1.4
@@ -578,7 +578,8 @@
 
    if (list->first == old)
       list->first = NULL;
-   for (prev = list->first; prev && prev->next != old; prev = prev->next);
+   for (prev = list->first; prev && prev->next != old; prev = prev->next)
+      ;
    list->last = prev;
    if (prev)
      {
@@ -645,7 +646,8 @@
 
    _ecore_list_goto_first(list);
 
-   for (i = 0; i < indx && _ecore_list_next(list); i++);
+   for (i = 0; i < indx && _ecore_list_next(list); i++)
+      ;
 
    if (i >= list->nodes)
       return NULL;




-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to