mirror of git://git.suckless.org/ubase
df: Don't scream if statvfs() fails
This commit is contained in:
parent
4c33cf2a98
commit
ac4fcddd50
6
df.c
6
df.c
|
@ -60,10 +60,8 @@ mnt_show(const char *fsname, const char *dir)
|
|||
int capacity = 0;
|
||||
int bs;
|
||||
|
||||
if (statvfs(dir, &s) < 0) {
|
||||
weprintf("statvfs %s:", dir);
|
||||
if (statvfs(dir, &s) < 0)
|
||||
return -1;
|
||||
}
|
||||
|
||||
bs = s.f_frsize / blksize;
|
||||
total = s.f_blocks * bs;
|
||||
|
@ -138,4 +136,4 @@ main(int argc, char *argv[])
|
|||
endmntent(fp);
|
||||
|
||||
return ret;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue