diff platform/dirent.h @ 1601:71e0a3ad07f7

Enable level 3 warnings in DEBUG mode with Visual C to show deprecation warnings. Source code cleanup to eliminate the warnings now generated on this level.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Sun, 26 Feb 2012 09:21:35 +0000
parents 6baf177f335c
children
line wrap: on
line diff
--- a/platform/dirent.h	Sat Feb 25 23:35:59 2012 +0000
+++ b/platform/dirent.h	Sun Feb 26 09:21:35 2012 +0000
@@ -34,14 +34,14 @@
 #endif
 
 struct dirent {
-    int            d_ino;                 /* Dummy */
-    int            d_reclen;		  /* Dummy, same as d_namlen */
-    int            d_namlen;              /* length of name */
-    char           d_name[MAXNAMLEN + 1];
-    unsigned long  d_size;
-    unsigned short d_attribute;           /* attributes (see above) */
-    unsigned short d_time;                /* modification time */
-    unsigned short d_date;                /* modification date */
+    int                 d_ino;                 /* Dummy */
+    int                 d_reclen;		  /* Dummy, same as d_namlen */
+    int                 d_namlen;              /* length of name */
+    char                d_name[MAXNAMLEN + 1];
+    unsigned long long  d_size;
+    unsigned long       d_attribute;           /* attributes (see above) */
+    unsigned short      d_time;                /* modification time */
+    unsigned short      d_date;                /* modification date */
 };
 
 typedef struct _dirdescr DIR;