diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-10-24 04:06:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-10-24 04:06:18 +0200 |
commit | ec447c7f01acb0e3abd9daa52a1b616be3f39484 (patch) | |
tree | b4e2c9fb96c0358caa6d5507d5d2c56cde4a51a2 /libbb/vdprintf.c | |
parent | e9dc354df86e9a3026de406520f6cd03a3519495 (diff) |
libbb.h: remove unused defines
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb/vdprintf.c')
-rw-r--r-- | libbb/vdprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/vdprintf.c b/libbb/vdprintf.c index feeb403a0..05426873e 100644 --- a/libbb/vdprintf.c +++ b/libbb/vdprintf.c @@ -12,10 +12,10 @@ #if defined(__GLIBC__) && __GLIBC__ < 2 int FAST_FUNC vdprintf(int d, const char *format, va_list ap) { - char buf[BUF_SIZE]; + char buf[8 * 1024]; int len; - len = vsnprintf(buf, BUF_SIZE, format, ap); + len = vsnprintf(buf, sizeof(buf), format, ap); return write(d, buf, len); } #endif |