mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
more readable integer constant
This commit is contained in:
parent
763ce1c485
commit
00a7936c9f
1 changed files with 1 additions and 1 deletions
|
|
@ -38,7 +38,7 @@ void os_spawn_process(const char *exe, ZigList<const char *> &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 (;;) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue