summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-07-03 21:05:06 +0000
committerJim Meyering <jim@meyering.net>1998-07-03 21:05:06 +0000
commit1f682431aed8769caee308aa0334e303ab1f1c82 (patch)
tree2c3aa81e15622076f64d2be271c057b88c91e104 /src/df.c
parent698a43f3632f8fd67f8bd3df880f50cfdce4eaab (diff)
downloadcoreutils-1f682431aed8769caee308aa0334e303ab1f1c82.tar.xz
(df_readable): Rename local so as not to shadow global.
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/df.c b/src/df.c
index d23ae2a30..b4205a0b4 100644
--- a/src/df.c
+++ b/src/df.c
@@ -188,10 +188,10 @@ excluded_fstype (const char *fstype)
/* Like human_readable, except return "-" if the argument is -1. */
static char *
df_readable (uintmax_t n, char *buf,
- int from_block_size, int output_block_size)
+ int from_block_size, int t_output_block_size)
{
return (n == -1 ? "-"
- : human_readable (n, buf, from_block_size, output_block_size));
+ : human_readable (n, buf, from_block_size, t_output_block_size));
}
/* Display a space listing for the disk device with absolute path DISK.