From 1f682431aed8769caee308aa0334e303ab1f1c82 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Fri, 3 Jul 1998 21:05:06 +0000 Subject: [PATCH] (df_readable): Rename local so as not to shadow global. --- src/df.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/df.c b/src/df.c index d23ae2a306..b4205a0b48 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. -- 2.47.3