Fix -Wnull-conversion warning.
authorZachary Turner <zturner@google.com>
Thu, 3 Jul 2014 23:44:14 +0000 (23:44 +0000)
committerZachary Turner <zturner@google.com>
Thu, 3 Jul 2014 23:44:14 +0000 (23:44 +0000)
llvm-svn: 212304

lldb/source/Commands/CommandObjectPlatform.cpp

index 459ed92..96ebd51 100644 (file)
@@ -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 }
 };