diff options
author | Jim Meyering <jim@meyering.net> | 2000-12-02 21:14:02 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-12-02 21:14:02 +0000 |
commit | 5edc91fc059ee83939e0d47a6c58eb614d0edc81 (patch) | |
tree | 06401728be0ba5293a6ed18c7b96e3a51711b301 /src | |
parent | 8b4ac209082fc37f1d712228208689c21eb4b42d (diff) | |
download | coreutils-5edc91fc059ee83939e0d47a6c58eb614d0edc81.tar.xz |
(checkfp): Rename local `buf' to avoid shadowing previous declaration.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c index ce62c4271..5acf3dcca 100644 --- a/src/sort.c +++ b/src/sort.c @@ -1436,7 +1436,7 @@ finish: if (disorder_line_number) { - char buf[LONGEST_HUMAN_READABLE + 1]; + char hr_buf[LONGEST_HUMAN_READABLE + 1]; fprintf (stderr, _("%s: %s:%s: disorder: "), program_name, file_name, human_readable (disorder_line_number, buf, 1, 1)); write_bytes (disorder_line->text, disorder_line->length, stderr, |