diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2019-04-02 17:02:21 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2019-04-02 17:02:21 +0000 |
commit | b622809b2df19da227d5ea74870f1716f5875b96 (patch) | |
tree | 09f6da5185c652b9de1a3e40f3a21d12abc82382 | |
parent | fa6cd5ceb92282cab41435e7625f360085c4677d (diff) | |
download | bcm5719-llvm-b622809b2df19da227d5ea74870f1716f5875b96.tar.gz bcm5719-llvm-b622809b2df19da227d5ea74870f1716f5875b96.zip |
Fix typo; NFC
llvm-svn: 357495
-rw-r--r-- | lldb/include/lldb/Target/Platform.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/include/lldb/Target/Platform.h b/lldb/include/lldb/Target/Platform.h index ceecc7793b8..82442a4b594 100644 --- a/lldb/include/lldb/Target/Platform.h +++ b/lldb/include/lldb/Target/Platform.h @@ -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; } |