]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(show_entry): Update sole use of show_disk.
authorJim Meyering <jim@meyering.net>
Wed, 5 Feb 2003 07:01:27 +0000 (07:01 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 5 Feb 2003 07:01:27 +0000 (07:01 +0000)
src/df.c

index 5a767f3da8306f91bf0a30bdce09c4ead19c22dc..42b8f88c1242291c8ef87f56079d886abb2b7944 100644 (file)
--- 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);
 }