[Lldb-commits] [lldb] r154539 - /lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp

Johnny Chen johnny.chen at apple.com
Wed Apr 11 15:09:29 PDT 2012


Author: johnny
Date: Wed Apr 11 17:09:29 2012
New Revision: 154539

URL: http://llvm.org/viewvc/llvm-project?rev=154539&view=rev
Log:
Modify a couple of output messages for 'platform get-file'.

Modified:
    lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp

Modified: lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp?rev=154539&r1=154538&r2=154539&view=diff
==============================================================================
--- lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp (original)
+++ lldb/branches/lldb-platform-work/source/Commands/CommandObjectPlatform.cpp Wed Apr 11 17:09:29 2012
@@ -695,13 +695,13 @@
                                                FileSpec(host_file_path.c_str(), false));
             if (error.Success())
             {
-                result.AppendMessageWithFormat("Successfully uploaded file from %s (remote) to %s (host)\n",
+                result.AppendMessageWithFormat("successfully get-file from %s (remote) to %s (host)\n",
                                                remote_file_path.c_str(), host_file_path.c_str());
                 result.SetStatus (eReturnStatusSuccessFinishResult);
             }
             else
             {
-                result.AppendMessageWithFormat("Uploading failed: %s\n", error.AsCString());
+                result.AppendMessageWithFormat("get-file failed: %s\n", error.AsCString());
                 result.SetStatus (eReturnStatusFailed);
             }
         }





More information about the lldb-commits mailing list