diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-09-20 11:18:13 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-09-20 11:18:13 -0400 |
commit | 246e15c0dc4f2e0120f7e54445d621bd3b1afbd8 (patch) | |
tree | 3c843875c43c3ceba1b26f65bc6d0216ad38a238 | |
parent | 32b82cf5cdc282839cc02c57a50c991e376f0348 (diff) | |
download | musl-246e15c0dc4f2e0120f7e54445d621bd3b1afbd8.tar.gz |
fix statvfs.c to match new fsid_t definition
-rw-r--r-- | src/stat/statvfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/statvfs.c b/src/stat/statvfs.c index 11ad7543..5fadb3b4 100644 --- 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; } |