aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
diff options
context:
space:
mode:
authorJohn Harrison <harjohn@google.com>2025-05-27 21:35:22 -0700
committerGitHub <noreply@github.com>2025-05-27 21:35:22 -0700
commit16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549 (patch)
treee4b4e9c27392314b49375183e78d5e8a6df6d112 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
parentcfece5abe34edf74bbdd23aea706fa3988c09db0 (diff)
downloadllvm-16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549.zip
llvm-16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549.tar.gz
llvm-16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549.tar.bz2
[lldb] Correcting an error message. (#141696)
'isconnect' I assume was supposed to be 'disconnect'.
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r--lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
index c4c2a8a..adbf06b 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;
}