diff options
Diffstat (limited to 'src/http/async_message.zig')
-rw-r--r-- | src/http/async_message.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/async_message.zig b/src/http/async_message.zig index 5fce3488b..3e204455f 100644 --- a/src/http/async_message.zig +++ b/src/http/async_message.zig @@ -2,7 +2,7 @@ const std = @import("std"); const ObjectPool = @import("../pool.zig").ObjectPool; const AsyncIO = @import("io"); -pub const buffer_pool_len = std.math.maxInt(u16) - 64; +pub const buffer_pool_len = std.math.maxInt(u16); pub const BufferPoolBytes = [buffer_pool_len]u8; pub const BufferPool = ObjectPool(BufferPoolBytes, null, false, 4); |