Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 16 Sep 2000 03:49:43 +0000 (03:49 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 16 Sep 2000 03:49:43 +0000 (03:49 +0000)
* sysdeps/unix/sysv/linux/ia64/bits/stat.h: Correct position of
st_blocks member in stat and stat64 structs.
Patch by Bill Nottingham <notting@redhat.com>.

ChangeLog
sysdeps/unix/sysv/linux/ia64/bits/stat.h

index 4d717eb..f429ff7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2000-09-15  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/ia64/bits/stat.h: Correct position of
+       st_blocks member in stat and stat64 structs.
+       Patch by Bill Nottingham <notting@redhat.com>.
+
        * iconvdata/tst-tables.sh: Add warning that GB18030 test might
        take longer.
 
index da1d35c..3d938c1 100644 (file)
@@ -45,8 +45,8 @@ struct stat
     long int __reserved1;      /* Reserved for mtime.nanoseconds.  */
     __time_t st_ctime;         /* Time of last status change.  */
     long int __reserved2;      /* Reserved for ctime.nanoseconds.  */
-    __blkcnt_t st_blocks;      /* Nr. 512-byte blocks allocated.  */
     __blksize_t st_blksize;    /* Optimal block size for I/O.  */
+    __blkcnt_t st_blocks;      /* Nr. 512-byte blocks allocated.  */
     long int __unused[3];
   };
 
@@ -69,8 +69,8 @@ struct stat64
     long int __reserved1;      /* Reserved for mtime.nanoseconds.  */
     __time_t st_ctime;         /* Time of last status change.  */
     long int __reserved2;      /* Reserved for ctime.nanoseconds.  */
-    __blkcnt64_t st_blocks;    /* Nr. 512-byte blocks allocated.  */
     __blksize_t st_blksize;    /* Optimal block size for I/O.  */
+    __blkcnt64_t st_blocks;    /* Nr. 512-byte blocks allocated.  */
     long int __unused[3];
   };
 #endif