diff options
Diffstat (limited to 'coreutils/tr.c')
-rw-r--r-- | coreutils/tr.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/coreutils/tr.c b/coreutils/tr.c index 5b7b8d091..2665d926f 100644 --- a/coreutils/tr.c +++ b/coreutils/tr.c | |||
@@ -155,11 +155,11 @@ extern int tr_main(int argc, char **argv) | |||
155 | int output_length=0, input_length; | 155 | int output_length=0, input_length; |
156 | int idx = 1; | 156 | int idx = 1; |
157 | int i; | 157 | int i; |
158 | RESERVE_BB_BUFFER(output, BUFSIZ); | 158 | RESERVE_CONFIG_BUFFER(output, BUFSIZ); |
159 | RESERVE_BB_BUFFER(input, BUFSIZ); | 159 | RESERVE_CONFIG_BUFFER(input, BUFSIZ); |
160 | RESERVE_BB_UBUFFER(vector, ASCII+1); | 160 | RESERVE_CONFIG_UBUFFER(vector, ASCII+1); |
161 | RESERVE_BB_BUFFER(invec, ASCII+1); | 161 | RESERVE_CONFIG_BUFFER(invec, ASCII+1); |
162 | RESERVE_BB_BUFFER(outvec, ASCII+1); | 162 | RESERVE_CONFIG_BUFFER(outvec, ASCII+1); |
163 | 163 | ||
164 | /* ... but make them available globally */ | 164 | /* ... but make them available globally */ |
165 | poutput = output; | 165 | poutput = output; |