diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-10 16:40:47 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-04-10 16:40:47 +0000 |
commit | 9ba72d7b7942e7670a701647252d49a32da87b69 (patch) | |
tree | 8fc7efaff3e89b14a1452d7fe3a4c88b0c9f822d /coreutils/sum.c | |
parent | 96ce8ab2ba5894c8ec9ef36279795ec0b939258c (diff) | |
download | busybox-w32-9ba72d7b7942e7670a701647252d49a32da87b69.tar.gz busybox-w32-9ba72d7b7942e7670a701647252d49a32da87b69.tar.bz2 busybox-w32-9ba72d7b7942e7670a701647252d49a32da87b69.zip |
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...
git-svn-id: svn://busybox.net/trunk/busybox@14784 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/sum.c')
-rw-r--r-- | coreutils/sum.c | 2 |
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) | |||
82 | #define MY_BUF_SIZE 8192 | 82 | #define MY_BUF_SIZE 8192 |
83 | static int sysv_sum_file(const char *file, int print_name) | 83 | static int sysv_sum_file(const char *file, int print_name) |
84 | { | 84 | { |
85 | RESERVE_CONFIG_UBUFFER(buf, MY_BUF_SIZE); | 85 | RESERVE_CONFIG_BUFFER(buf, MY_BUF_SIZE); |
86 | int fd; | 86 | int fd; |
87 | uintmax_t total_bytes = 0; | 87 | uintmax_t total_bytes = 0; |
88 | 88 | ||