LibIPC: Fix incorrectly named function parameter in TransportSocket

This commit is contained in:
Aliaksandr Kalenik 2025-04-10 16:05:54 +02:00
parent 3c88bedc05
commit 8db466ae5d

View file

@ -92,7 +92,7 @@ public:
Vector<u8> bytes;
Queue<File> fds;
};
ShouldShutdown read_as_many_messages_as_possible_without_blocking(Function<void(Message&&)>&& schedule_shutdown);
ShouldShutdown read_as_many_messages_as_possible_without_blocking(Function<void(Message&&)>&&);
// Obnoxious name to make it clear that this is a dangerous operation.
ErrorOr<int> release_underlying_transport_for_transfer();