about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-09-16 03:49:43 +0000
committerUlrich Drepper <drepper@redhat.com>2000-09-16 03:49:43 +0000
commitd3d934d81cffcd24d6dce6f54e7f77204ecd777f (patch)
tree69d1dba1807ccfc65d89ff70fa422bf76e702d16 /sysdeps
parent8bd6a35210d003745e44d07d0297121090c49af2 (diff)
downloadglibc-d3d934d81cffcd24d6dce6f54e7f77204ecd777f.tar.gz
glibc-d3d934d81cffcd24d6dce6f54e7f77204ecd777f.tar.xz
glibc-d3d934d81cffcd24d6dce6f54e7f77204ecd777f.zip
Update.
	* 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>.
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/unix/sysv/linux/ia64/bits/stat.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/bits/stat.h b/sysdeps/unix/sysv/linux/ia64/bits/stat.h
index da1d35c8f1..3d938c1228 100644
--- a/sysdeps/unix/sysv/linux/ia64/bits/stat.h
+++ b/sysdeps/unix/sysv/linux/ia64/bits/stat.h
@@ -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