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

llvm-svn: 131089
This commit is contained in:
Johnny Chen 2011-05-09 19:05:46 +00:00
parent 0daf687e1d
commit 3173e27e9f
1 changed files with 2 additions and 2 deletions

View File

@ -831,8 +831,8 @@ public:
}
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);
}
}