summaryrefslogtreecommitdiff
path: root/src/stat/fstatvfs.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-04-03 15:42:31 -0400
committerRich Felker <dalias@aerifal.cx>2011-04-03 15:42:31 -0400
commit7e795ca7edfb2b952abe6a839e84a94420ff8a90 (patch)
treebe107be7f3afba3a7185bd9736fa9b7362461d48 /src/stat/fstatvfs.c
parent66def4e776a0c6d68559309aa043163f77b148a5 (diff)
downloadmusl-7e795ca7edfb2b952abe6a839e84a94420ff8a90.tar.gz
fix statvfs syscalls (missing size argument)
Diffstat (limited to 'src/stat/fstatvfs.c')
-rw-r--r--src/stat/fstatvfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stat/fstatvfs.c b/src/stat/fstatvfs.c
index 8a2e4235..833e8ec8 100644
--- a/src/stat/fstatvfs.c
+++ b/src/stat/fstatvfs.c
@@ -4,7 +4,7 @@
int fstatvfs(int fd, struct statvfs *buf)
{
- return syscall(SYS_fstatfs, fd, buf);
+ return syscall(SYS_fstatfs, fd, sizeof *buf, buf);
}
weak_alias(fstatvfs, fstatfs);