diff options
Diffstat (limited to 'Userland/Libraries/LibIPC/Decoder.h')
-rw-r--r-- | Userland/Libraries/LibIPC/Decoder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibIPC/Decoder.h b/Userland/Libraries/LibIPC/Decoder.h index 1a8a3e7aef..2bd1283576 100644 --- a/Userland/Libraries/LibIPC/Decoder.h +++ b/Userland/Libraries/LibIPC/Decoder.h @@ -137,7 +137,7 @@ template<Concepts::SharedSingleProducerCircularQueue T> ErrorOr<T> decode(Decoder& decoder) { auto anon_file = TRY(decoder.decode<IPC::File>()); - return T::try_create(anon_file.take_fd()); + return T::create(anon_file.take_fd()); } template<Concepts::Optional T> |