mirror of
https://github.com/fluencelabs/musl
synced 2025-07-31 06:11:57 +00:00
fix statvfs.c to match new fsid_t definition
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user