aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <maks@sternwelten.at>2005-12-28 09:08:38 -0800
committerH. Peter Anvin <hpa@zytor.com>2005-12-28 09:08:38 -0800
commit942255f19a0ddedaa1c1cfb95b35d787ce6ad400 (patch)
tree3f7fb05d3dc081bc91168987a67d8dd48e36fa89
parent4f9923b5d416c4674f69e270d6269c554d4ccc72 (diff)
downloadklibc-942255f19a0ddedaa1c1cfb95b35d787ce6ad400.tar.gz
please revert commit aaa4e02c9baea24371ab021de4f00d69cb681095klibc-1.1.11
that patch was a quick workaround for alpha, the issue beeing fixed by commit 1181b5904272b884afda429461765142e72e34fc
-rw-r--r--include/sys/vfs.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sys/vfs.h b/include/sys/vfs.h
index 24be10748c820..41a2d764f072c 100644
--- a/include/sys/vfs.h
+++ b/include/sys/vfs.h
@@ -32,17 +32,17 @@ struct statfs {
#else /* _BITSIZE == 64 */
struct statfs {
- uint32_t f_type;
- uint32_t f_bsize;
+ uint64_t f_type;
+ uint64_t f_bsize;
uint64_t f_blocks;
uint64_t f_bfree;
uint64_t f_bavail;
uint64_t f_files;
uint64_t f_ffree;
__kernel_fsid_t f_fsid;
- uint32_t f_namelen;
- uint32_t f_frsize;
- uint32_t f_spare[5];
+ uint64_t f_namelen;
+ uint64_t f_frsize;
+ uint64_t f_spare[5];
};
#endif /* _BITSIZE */