summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/MasterPTY.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/MasterPTY.cpp b/Kernel/MasterPTY.cpp
index 7cb6f8b687..079f630afb 100644
--- a/Kernel/MasterPTY.cpp
+++ b/Kernel/MasterPTY.cpp
@@ -38,7 +38,7 @@ bool MasterPTY::can_read(Process&) const
bool MasterPTY::can_write(Process&) const
{
- return m_buffer.bytes_in_write_buffer() < 4096;
+ return true;
}
void MasterPTY::on_slave_write(const byte* data, size_t size)