Fix the wrong error message for "platform process info", i.e., with no pid(s) specified for the command.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@131089 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Commands/CommandObjectPlatform.cpp b/source/Commands/CommandObjectPlatform.cpp
index f9462f6..ecc24a6 100644
--- a/source/Commands/CommandObjectPlatform.cpp
+++ b/source/Commands/CommandObjectPlatform.cpp
@@ -831,8 +831,8 @@
             }
             else
             {
-                // Bad args
-                result.AppendError ("\"platform disconnect\" doesn't take any arguments");
+                // No args
+                result.AppendError ("one or more process id(s) must be specified");
                 result.SetStatus (eReturnStatusFailed);            
             }
         }