diff options
author | Rob Landley <rob@landley.net> | 2006-04-10 16:40:47 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2006-04-10 16:40:47 +0000 |
commit | 998f4493756423877217239d2cc42eb8b83d50b3 (patch) | |
tree | 8fc7efaff3e89b14a1452d7fe3a4c88b0c9f822d /coreutils/tr.c | |
parent | 72615752db145128bd494a0d54eaa56fa8936e49 (diff) |
We use -funsigned-char now, so having a separate RESERVE_CONFIG_UBUFFER is
a bit silly. Wean of that where it currently makes no difference...
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index adddf83d2..15a9d17b0 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c @@ -209,7 +209,7 @@ int tr_main(int argc, char **argv) int idx = 1; int i; RESERVE_CONFIG_BUFFER(output, BUFSIZ); - RESERVE_CONFIG_UBUFFER(vector, ASCII+1); + RESERVE_CONFIG_BUFFER(vector, ASCII+1); RESERVE_CONFIG_BUFFER(invec, ASCII+1); RESERVE_CONFIG_BUFFER(outvec, ASCII+1); |