From: Jim Meyering Date: Fri, 3 Jul 1998 21:05:06 +0000 (+0000) Subject: (df_readable): Rename local so as not to shadow global. X-Git-Tag: FILEUTILS-3_16r~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f682431aed8769caee308aa0334e303ab1f1c82;p=platform%2Fupstream%2Fcoreutils.git (df_readable): Rename local so as not to shadow global. --- diff --git a/src/df.c b/src/df.c index d23ae2a..b4205a0 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.