(df_readable): Rename local so as not to shadow global.
authorJim Meyering <jim@meyering.net>
Fri, 3 Jul 1998 21:05:06 +0000 (21:05 +0000)
committerJim Meyering <jim@meyering.net>
Fri, 3 Jul 1998 21:05:06 +0000 (21:05 +0000)
src/df.c

index d23ae2a..b4205a0 100644 (file)
--- 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.