aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sum.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2006-04-10 16:40:47 +0000
committerRob Landley <rob@landley.net>2006-04-10 16:40:47 +0000
commit998f4493756423877217239d2cc42eb8b83d50b3 (patch)
tree8fc7efaff3e89b14a1452d7fe3a4c88b0c9f822d /coreutils/sum.c
parent72615752db145128bd494a0d54eaa56fa8936e49 (diff)
downloadbusybox-998f4493756423877217239d2cc42eb8b83d50b3.tar.gz
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/sum.c')
-rw-r--r--coreutils/sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c
index eb919ab15..2edd92036 100644
--- a/coreutils/sum.c
+++ b/coreutils/sum.c
@@ -82,7 +82,7 @@ static int bsd_sum_file(const char *file, int print_name)
#define MY_BUF_SIZE 8192
static int sysv_sum_file(const char *file, int print_name)
{
- RESERVE_CONFIG_UBUFFER(buf, MY_BUF_SIZE);
+ RESERVE_CONFIG_BUFFER(buf, MY_BUF_SIZE);
int fd;
uintmax_t total_bytes = 0;