[Lldb-commits] [lldb] r357495 - Fix typo; NFC

Aaron Smith via lldb-commits lldb-commits at lists.llvm.org
Tue Apr 2 10:02:22 PDT 2019


Author: asmith
Date: Tue Apr  2 10:02:21 2019
New Revision: 357495

URL: http://llvm.org/viewvc/llvm-project?rev=357495&view=rev
Log:
Fix typo; NFC

Modified:
    lldb/trunk/include/lldb/Target/Platform.h

Modified: lldb/trunk/include/lldb/Target/Platform.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Target/Platform.h?rev=357495&r1=357494&r2=357495&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Target/Platform.h (original)
+++ lldb/trunk/include/lldb/Target/Platform.h Tue Apr  2 10:02:21 2019
@@ -596,7 +596,7 @@ public:
   virtual uint64_t WriteFile(lldb::user_id_t fd, uint64_t offset,
                              const void *src, uint64_t src_len, Status &error) {
     error.SetErrorStringWithFormat(
-        "Platform::ReadFile() is not supported in the %s platform",
+        "Platform::WriteFile() is not supported in the %s platform",
         GetName().GetCString());
     return -1;
   }




More information about the lldb-commits mailing list