diff options
Diffstat (limited to 'Kernel/FileSystem/Plan9FileSystem.h')
-rw-r--r-- | Kernel/FileSystem/Plan9FileSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/FileSystem/Plan9FileSystem.h b/Kernel/FileSystem/Plan9FileSystem.h index 0c79fdaf11..53f1621a89 100644 --- a/Kernel/FileSystem/Plan9FileSystem.h +++ b/Kernel/FileSystem/Plan9FileSystem.h @@ -135,7 +135,7 @@ private: ProtocolVersion m_remote_protocol_version { ProtocolVersion::v9P2000 }; size_t m_max_message_size { 4 * KiB }; - Lock m_send_lock { "Plan9FS send" }; + Mutex m_send_lock { "Plan9FS send" }; Plan9FSBlockCondition m_completion_blocker; HashMap<u16, NonnullRefPtr<ReceiveCompletion>> m_completions; |