aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectPlatform.cpp
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-05-02 22:07:16 +0000
committerGreg Clayton <gclayton@apple.com>2013-05-02 22:07:16 +0000
commit864fa8c0859beda25f1a2b71d271775b5087bdad (patch)
tree4faecd59a0c4ee57340885ce19f52de04cdadcd5 /lldb/source/Commands/CommandObjectPlatform.cpp
parenta4ce2538194a0a0cdacee3fa76bcfd02bff567f4 (diff)
downloadllvm-864fa8c0859beda25f1a2b71d271775b5087bdad.zip
llvm-864fa8c0859beda25f1a2b71d271775b5087bdad.tar.gz
llvm-864fa8c0859beda25f1a2b71d271775b5087bdad.tar.bz2
<rdar://problem/13788674>
TestPlatformCommand failing on buildbot. llvm-svn: 180963
Diffstat (limited to 'lldb/source/Commands/CommandObjectPlatform.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectPlatform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectPlatform.cpp b/lldb/source/Commands/CommandObjectPlatform.cpp
index 6e47ff8..60bcece 100644
--- a/lldb/source/Commands/CommandObjectPlatform.cpp
+++ b/lldb/source/Commands/CommandObjectPlatform.cpp
@@ -744,7 +744,7 @@ protected:
OptionDefinition
CommandObjectPlatformProcessList::CommandOptions::g_option_table[] =
{
-{ LLDB_OPT_SET_1 , true , "pid" , 'p', required_argument, NULL, 0, eArgTypePid , "List the process info for a specific process ID." },
+{ LLDB_OPT_SET_1 , false, "pid" , 'p', required_argument, NULL, 0, eArgTypePid , "List the process info for a specific process ID." },
{ LLDB_OPT_SET_2 , true , "name" , 'n', required_argument, NULL, 0, eArgTypeProcessName , "Find processes with executable basenames that match a string." },
{ LLDB_OPT_SET_3 , true , "ends-with" , 'e', required_argument, NULL, 0, eArgTypeProcessName , "Find processes with executable basenames that end with a string." },
{ LLDB_OPT_SET_4 , true , "starts-with", 's', required_argument, NULL, 0, eArgTypeProcessName , "Find processes with executable basenames that start with a string." },