aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectPlatform.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2014-07-03 23:44:14 +0000
committerZachary Turner <zturner@google.com>2014-07-03 23:44:14 +0000
commit35974065fe363151307b95d50083a2cf6ebe919c (patch)
tree511ed15b3834846af07b810f00a4f70242d36b5a /lldb/source/Commands/CommandObjectPlatform.cpp
parent1505c0a4be67089868d26c9486e9822d38762bab (diff)
downloadllvm-35974065fe363151307b95d50083a2cf6ebe919c.zip
llvm-35974065fe363151307b95d50083a2cf6ebe919c.tar.gz
llvm-35974065fe363151307b95d50083a2cf6ebe919c.tar.bz2
Fix -Wnull-conversion warning.
llvm-svn: 212304
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 459ed92..96ebd51 100644
--- a/lldb/source/Commands/CommandObjectPlatform.cpp
+++ b/lldb/source/Commands/CommandObjectPlatform.cpp
@@ -1968,7 +1968,7 @@ CommandObjectPlatformProcessAttach::CommandOptions::g_option_table[] =
{ LLDB_OPT_SET_1, false, "pid", 'p' , OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypePid, "The process ID of an existing process to attach to."},
{ LLDB_OPT_SET_2, false, "name", 'n' , OptionParser::eRequiredArgument, NULL, NULL, 0, eArgTypeProcessName, "The name of the process to attach to."},
{ LLDB_OPT_SET_2, false, "waitfor", 'w' , OptionParser::eNoArgument , NULL, NULL, 0, eArgTypeNone, "Wait for the the process with <process-name> to launch."},
- { 0, false, NULL , NULL , 0 , NULL, NULL, 0, eArgTypeNone, NULL }
+ { 0, false, NULL , 0 , 0 , NULL, NULL, 0, eArgTypeNone, NULL }
};