[Lldb-commits] [lldb] [lldb-dap] Adding support for cancelling a request. (PR #130169)
Adrian Vogelsgesang via lldb-commits
lldb-commits at lists.llvm.org
Thu Mar 6 15:10:54 PST 2025
================
@@ -67,7 +67,7 @@ static Status ReadExpected(IOObjectSP &descriptor, llvm::StringRef expected) {
if (status.Fail())
return status;
if (expected != result) {
- return Status::FromErrorStringWithFormatv("expected %s, got %s", expected,
+ return Status::FromErrorStringWithFormatv("expected {0}, got {1}", expected,
result);
----------------
vogelsgesang wrote:
should this be backported to your earlier PR #130026?
https://github.com/llvm/llvm-project/pull/130169
More information about the lldb-commits
mailing list