diff options
author | Jim Meyering <jim@meyering.net> | 2003-02-05 07:01:27 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-02-05 07:01:27 +0000 |
commit | 3c1dbea18f07920a3be938993bfefc33eb86e6e9 (patch) | |
tree | e45f02089b4b78fcf17e494f03d5d23e2e0fad8a /src | |
parent | 4d97bfa9666369bfd64163ce01941d16bcfa217f (diff) | |
download | coreutils-3c1dbea18f07920a3be938993bfefc33eb86e6e9.tar.xz |
(show_entry): Update sole use of show_disk.
Diffstat (limited to 'src')
-rw-r--r-- | src/df.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |