Enlightenment CVS committal

Author  : dj2
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/lib


Modified Files:
        ewl_filelist.c 


Log Message:
- fix warnings

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filelist.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -3 -r1.12 -r1.13
--- ewl_filelist.c      30 Apr 2006 05:45:35 -0000      1.12
+++ ewl_filelist.c      2 May 2006 00:46:29 -0000       1.13
@@ -301,7 +301,7 @@
        if (pwd)
                snprintf(name, PATH_MAX, "%s", pwd->pw_name);
        else 
-               snprintf(name, PATH_MAX, "%-8d", st_uid);
+               snprintf(name, PATH_MAX, "%-8d", (int)st_uid);
 
        DRETURN_PTR(strdup(name), DLEVEL_STABLE);
 }
@@ -318,7 +318,7 @@
        if (grp)
                snprintf(name, PATH_MAX, "%s", grp->gr_name);
        else 
-               snprintf(name, PATH_MAX, "%-8d", st_gid);
+               snprintf(name, PATH_MAX, "%-8d", (int)st_gid);
        
        DRETURN_PTR(strdup(name), DLEVEL_STABLE);
 }




-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to