[Lldb-commits] [lldb] [lldb-dap] Adding support for cancelling a request. (PR #130169)

John Harrison via lldb-commits lldb-commits at lists.llvm.org
Tue Mar 18 12:46:40 PDT 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);
----------------
ashgti wrote:

Done.

https://github.com/llvm/llvm-project/pull/130169


More information about the lldb-commits mailing list