summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-11-16 14:19:27 +0000
committerJim Meyering <jim@meyering.net>2000-11-16 14:19:27 +0000
commit5b8589432522e02f0216fce7bb299f60e1f3a7c9 (patch)
treefad62ceb834a39e471bdd4a370c88bf63543c6f6 /src
parentb77cb259352640d627c91cf76057d5f466c0018d (diff)
downloadcoreutils-5b8589432522e02f0216fce7bb299f60e1f3a7c9.tar.xz
Declare global `tab' to be of type *unsigned* char,
so join works with 8-bit delimiter characters. Reported by Antonio Rendas.
Diffstat (limited to 'src')
-rw-r--r--src/join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/join.c b/src/join.c
index fb2064d4d..10a3999da 100644
--- a/src/join.c
+++ b/src/join.c
@@ -114,7 +114,7 @@ static struct outlist *outlist_end = &outlist_head;
/* Tab character separating fields; if this is NUL fields are separated
by any nonempty string of white space, otherwise by exactly one
tab character. */
-static char tab;
+static unsigned char tab;
/* When using getopt_long_only, no long option can start with
a character that is a short option. */