summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-02-05 07:01:27 +0000
committerJim Meyering <jim@meyering.net>2003-02-05 07:01:27 +0000
commit3c1dbea18f07920a3be938993bfefc33eb86e6e9 (patch)
treee45f02089b4b78fcf17e494f03d5d23e2e0fad8a /src/df.c
parent4d97bfa9666369bfd64163ce01941d16bcfa217f (diff)
downloadcoreutils-3c1dbea18f07920a3be938993bfefc33eb86e6e9.tar.xz
(show_entry): Update sole use of show_disk.
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/df.c b/src/df.c
index 5a767f3da..42b8f88c1 100644
--- a/src/df.c
+++ b/src/df.c
@@ -668,7 +668,7 @@ static void
show_entry (const char *path, const struct stat *statp)
{
if (S_ISBLK (statp->st_mode) || S_ISCHR (statp->st_mode))
- show_disk (path);
+ show_disk (path, statp);
else
show_point (path, statp);
}