Displaying 1 result from an estimated 1 matches for "fschueler".
Did you mean:
schueler
2005 Dec 17
2
[patch] fix defintion of struct statfs64
From: Steve Langasek <vorlon@debian.org>
Fix the definition of struct statfs64,
required for run-init to work on alpha.
verified to have no regressions on amd64.
Signed-off-by: maximilian attems <janitor@sternwelten.at>
Signed-off-by: Frederik Sch?ler <fschueler-guest@costa.debian.org>
--- klibc-1.1.1.orig/include/sys/vfs.h
+++ klibc-1.1.1/include/sys/vfs.h
@@ -32,17 +32,17 @@
#else /* _BITSIZE == 64 */
struct statfs {
- uint64_t f_type;
- uint64_t f_bsize;
+ uint32_t f_type;
+ uint32_t f_bsize;
uint64_t f_block...