From 16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549 Mon Sep 17 00:00:00 2001 From: John Harrison Date: Tue, 27 May 2025 21:35:22 -0700 Subject: [PATCH] [lldb] Correcting an error message. (#141696) 'isconnect' I assume was supposed to be 'disconnect'. --- .../Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index c4c2a8aab3c9..adbf06b9a19a 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -1567,7 +1567,7 @@ Status GDBRemoteCommunicationClient::Detach(bool keep_stopped, PacketResult packet_result = SendPacketAndWaitForResponse(packet.GetString(), response); if (packet_result != PacketResult::Success) - error = Status::FromErrorString("Sending isconnect packet failed."); + error = Status::FromErrorString("Sending disconnect packet failed."); return error; }