summaryrefslogtreecommitdiff
path: root/src/join.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-11-17 10:16:53 +0000
committerJim Meyering <jim@meyering.net>2000-11-17 10:16:53 +0000
commitf15c4ee154132cc37d3b90787e815369e3b9a5e0 (patch)
tree80db2019c91def4356ee12aa6204e8e495e8928f /src/join.c
parent9a25583ef183ed1e3a0d64699f8b0de271fb31c7 (diff)
downloadcoreutils-f15c4ee154132cc37d3b90787e815369e3b9a5e0.tar.xz
Declare global `tab' to be of type *unsigned* char,
so join works with 8-bit delimiter characters.
Diffstat (limited to 'src/join.c')
-rw-r--r--src/join.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/join.c b/src/join.c
index 10a3999da..fb2064d4d 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 unsigned char tab;
+static char tab;
/* When using getopt_long_only, no long option can start with
a character that is a short option. */