From 8db466ae5d5ec18cf056a4759ee935fe958b4e8d Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Thu, 10 Apr 2025 16:05:54 +0200 Subject: [PATCH] LibIPC: Fix incorrectly named function parameter in TransportSocket --- Libraries/LibIPC/TransportSocket.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Libraries/LibIPC/TransportSocket.h b/Libraries/LibIPC/TransportSocket.h index 1c3c2a64b0d..329afcab3a5 100644 --- a/Libraries/LibIPC/TransportSocket.h +++ b/Libraries/LibIPC/TransportSocket.h @@ -92,7 +92,7 @@ public: Vector bytes; Queue fds; }; - ShouldShutdown read_as_many_messages_as_possible_without_blocking(Function&& schedule_shutdown); + ShouldShutdown read_as_many_messages_as_possible_without_blocking(Function&&); // Obnoxious name to make it clear that this is a dangerous operation. ErrorOr release_underlying_transport_for_transfer();