Enlightenment CVS committal

Author  : codewarrior
Project : e17
Module  : apps/e

Dir     : e17/apps/e/src/bin


Modified Files:
        e_fileman_smart.c 


Log Message:
- Fix broken shadow on icons
- Remove less portable fields.


===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/e/src/bin/e_fileman_smart.c,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -3 -r1.28 -r1.29
--- e_fileman_smart.c   13 Oct 2005 00:52:02 -0000      1.28
+++ e_fileman_smart.c   13 Oct 2005 08:41:13 -0000      1.29
@@ -74,7 +74,7 @@
    dev_t     rdev;            /* device ID (if special file) */
    off_t     size;            /* total size, in bytes */   
    //blksize_t blksize;         /* blocksize for filesystem I/O */
-   blkcnt_t  blocks;          /* number of blocks allocated */
+   //blkcnt_t  blocks;          /* number of blocks allocated */
    time_t    atime;           /* time of last access */
    time_t    mtime;           /* time of last modification */
    time_t    ctime;           /* time of last status change */
@@ -1240,8 +1240,9 @@
    attr->group = st.st_gid;
    attr->rdev = st.st_rdev;
    attr->size = st.st_size;
+   // check portability of the following 2 fields
    //attr->st_blksize = st.st_blksize;
-   attr->blocks = st.st_blocks;
+   //attr->blocks = st.st_blocks;
    attr->atime = st.st_atime;
    attr->mtime = st.st_mtime;
    attr->ctime = st.st_ctime;




-------------------------------------------------------
This SF.Net email is sponsored by:
Power Architecture Resource Center: Free content, downloads, discussions,
and more. http://solutions.newsforge.com/ibmarch.tmpl
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to