From 00a7936c9f80f780b4e1f215f323c90799335786 Mon Sep 17 00:00:00 2001 From: Josh Wolfe Date: Thu, 26 Nov 2015 02:48:06 -0700 Subject: [PATCH] more readable integer constant --- src/os.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os.cpp b/src/os.cpp index 5ce9178ffc2ed6f0266b41659a8406ec429c2892..bab72de2b95da66dde96b10b51ee681be499258f 100644 --- a/src/os.cpp +++ b/src/os.cpp @@ -38,7 +38,7 @@ void os_spawn_process(const char *exe, ZigList &args, bool detache } static void read_all_fd(int fd, Buf *out_buf) { - static const ssize_t buf_size = 8192; + static const ssize_t buf_size = 0x2000; buf_resize(out_buf, buf_size); ssize_t actual_buf_len = 0; for (;;) { -- 2.54.0