projects
/
oweals
/
musl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32b82cf
)
fix statvfs.c to match new fsid_t definition
author
Rich Felker
<dalias@aerifal.cx>
Tue, 20 Sep 2011 15:18:13 +0000
(11:18 -0400)
committer
Rich Felker
<dalias@aerifal.cx>
Tue, 20 Sep 2011 15:18:13 +0000
(11:18 -0400)
src/stat/statvfs.c
patch
|
blob
|
history
diff --git
a/src/stat/statvfs.c
b/src/stat/statvfs.c
index 11ad7543d9ce6a8d757fb4418f18073534c406a2..5fadb3b4b12d8cf15d5b2506433d538c1a64df4c 100644
(file)
--- a/
src/stat/statvfs.c
+++ b/
src/stat/statvfs.c
@@
-34,7
+34,7
@@
static void fixup(struct statvfs *out, const struct statfs *in)
out->f_files = in->f_files;
out->f_ffree = in->f_ffree;
out->f_favail = 0;
- out->f_fsid = in->f_fsid.val[0];
+ out->f_fsid = in->f_fsid.
__
val[0];
out->f_flag = in->f_flags;
out->f_namemax = in->f_namelen;
}