diff options
Diffstat (limited to 'Kernel/Net/TCPSocket.cpp')
-rw-r--r-- | Kernel/Net/TCPSocket.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Net/TCPSocket.cpp b/Kernel/Net/TCPSocket.cpp index 60bb2d949e..fe28a0b45a 100644 --- a/Kernel/Net/TCPSocket.cpp +++ b/Kernel/Net/TCPSocket.cpp @@ -614,7 +614,7 @@ void TCPSocket::retransmit_packets() }); } -bool TCPSocket::can_write(const OpenFileDescription& file_description, size_t size) const +bool TCPSocket::can_write(const OpenFileDescription& file_description, u64 size) const { if (!IPv4Socket::can_write(file_description, size)) return false; |