projects
/
platform
/
upstream
/
coreutils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a25583
)
Declare global `tab' to be of type *unsigned* char,
author
Jim Meyering
<jim@meyering.net>
Fri, 17 Nov 2000 10:16:53 +0000
(10:16 +0000)
committer
Jim Meyering
<jim@meyering.net>
Fri, 17 Nov 2000 10:16:53 +0000
(10:16 +0000)
so join works with 8-bit delimiter characters.
src/join.c
patch
|
blob
|
history
diff --git
a/src/join.c
b/src/join.c
index 10a3999da6a795edb2038edb16c0e7e28be3e518..fb2064d4dc6b0afb93cda33e1c3388acce339be4 100644
(file)
--- 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. */