diff options
author | Jim Meyering <jim@meyering.net> | 1998-07-03 21:05:06 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1998-07-03 21:05:06 +0000 |
commit | 1f682431aed8769caee308aa0334e303ab1f1c82 (patch) | |
tree | 2c3aa81e15622076f64d2be271c057b88c91e104 | |
parent | 698a43f3632f8fd67f8bd3df880f50cfdce4eaab (diff) | |
download | coreutils-1f682431aed8769caee308aa0334e303ab1f1c82.tar.xz |
(df_readable): Rename local so as not to shadow global.
-rw-r--r-- | src/df.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |