aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-23 21:46:46 -0800
committerGravatar Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> 2022-11-23 21:46:46 -0800
commit9806c301dd0f4ca0782405c08eb6e8bd72032037 (patch)
treed40aac6ed557addc828e32ce4f593539ff3b64d0
parent73416ebb62dd8d5ecee64f0cefaaa241af283f27 (diff)
downloadbun-9806c301dd0f4ca0782405c08eb6e8bd72032037.tar.gz
bun-9806c301dd0f4ca0782405c08eb6e8bd72032037.tar.zst
bun-9806c301dd0f4ca0782405c08eb6e8bd72032037.zip
Fix build error
-rw-r--r--src/bun.js/webcore/streams.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bun.js/webcore/streams.zig b/src/bun.js/webcore/streams.zig
index ed5cce8d9..2cdbc4f1c 100644
--- a/src/bun.js/webcore/streams.zig
+++ b/src/bun.js/webcore/streams.zig
@@ -3492,7 +3492,7 @@ pub const FIFO = struct {
signal: JSC.WebCore.Signal = .{},
is_first_read: bool = true,
auto_close: bool = true,
- adjusted_pipe_size_on_linux: bool = false,
+ has_adjusted_pipe_size_on_linux: bool = false,
pub usingnamespace NewReadyWatcher(@This(), .readable, ready);