diff options
author | John Harrison <harjohn@google.com> | 2025-05-27 21:35:22 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-27 21:35:22 -0700 |
commit | 16bbfe1d0a3fcbb3cfb01fbec3a89f2d64a96549 (patch) | |
tree | e4b4e9c27392314b49375183e78d5e8a6df6d112 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | cfece5abe34edf74bbdd23aea706fa3988c09db0 (diff) | |
download | llvm-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.cpp | 2 |
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; } |