authorgravatar for thejoshwolfe@gmail.comJosh Wolfe <thejoshwolfe@gmail.com> 2015-11-26 02:48:06-07:00
committergravatar for thejoshwolfe@gmail.comJosh Wolfe <thejoshwolfe@gmail.com> 2015-11-26 02:48:06-07:00
log00a7936c9f80f780b4e1f215f323c90799335786
tree830517eda67c118384ab518b703d7d1b0a069971
parent763ce1c4852eaee22c648c6909190f73d2ca775b

more readable integer constant


1 files changed, 1 insertions(+), 1 deletions(-)

src/os.cpp+1-1
......@@ -38,7 +38,7 @@ void os_spawn_process(const char *exe, ZigList<const char *> &args, bool detache
3838}
3939
4040static void read_all_fd(int fd, Buf *out_buf) {
41 static const ssize_t buf_size = 8192;
41 static const ssize_t buf_size = 0x2000;
4242 buf_resize(out_buf, buf_size);
4343 ssize_t actual_buf_len = 0;
4444 for (;;) {