From: Jim Meyering Date: Wed, 5 Feb 2003 07:01:27 +0000 (+0000) Subject: (show_entry): Update sole use of show_disk. X-Git-Tag: v4.5.6~35 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3c1dbea18f07920a3be938993bfefc33eb86e6e9;p=thirdparty%2Fcoreutils.git (show_entry): Update sole use of show_disk. --- diff --git a/src/df.c b/src/df.c index 5a767f3da8..42b8f88c12 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); }