diff options
author | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 16:09:27 +0000 |
---|---|---|
committer | Filipe Cabecinhas <me@filcab.net> | 2012-09-11 16:09:27 +0000 |
commit | bc6e85cb53f2a697b6a1456fa13157bd9447eb31 (patch) | |
tree | 65068f7f33f84825454e426c635ea348e4f3e42c /lldb/source/Commands/CommandObjectWatchpoint.cpp | |
parent | 42b641c8791a9379b6a6dc072f513290220437df (diff) | |
download | llvm-bc6e85cb53f2a697b6a1456fa13157bd9447eb31.zip llvm-bc6e85cb53f2a697b6a1456fa13157bd9447eb31.tar.gz llvm-bc6e85cb53f2a697b6a1456fa13157bd9447eb31.tar.bz2 |
Change the NULL to a 0 since we need a uint32_t
llvm-svn: 163625
Diffstat (limited to 'lldb/source/Commands/CommandObjectWatchpoint.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectWatchpoint.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Commands/CommandObjectWatchpoint.cpp b/lldb/source/Commands/CommandObjectWatchpoint.cpp index f7f4b69..d6ff811 100644 --- a/lldb/source/Commands/CommandObjectWatchpoint.cpp +++ b/lldb/source/Commands/CommandObjectWatchpoint.cpp @@ -743,7 +743,7 @@ private: OptionDefinition CommandObjectWatchpointIgnore::CommandOptions::g_option_table[] = { - { LLDB_OPT_SET_ALL, true, "ignore-count", 'i', required_argument, NULL, NULL, eArgTypeCount, "Set the number of times this watchpoint is skipped before stopping." }, + { LLDB_OPT_SET_ALL, true, "ignore-count", 'i', required_argument, NULL, 0, eArgTypeCount, "Set the number of times this watchpoint is skipped before stopping." }, { 0, false, NULL, 0 , 0, NULL, 0, eArgTypeNone, NULL } }; @@ -906,7 +906,7 @@ private: OptionDefinition CommandObjectWatchpointModify::CommandOptions::g_option_table[] = { -{ LLDB_OPT_SET_ALL, false, "condition", 'c', required_argument, NULL, NULL, eArgTypeExpression, "The watchpoint stops only if this condition expression evaluates to true."}, +{ LLDB_OPT_SET_ALL, false, "condition", 'c', required_argument, NULL, 0, eArgTypeExpression, "The watchpoint stops only if this condition expression evaluates to true."}, { 0, false, NULL, 0 , 0, NULL, 0, eArgTypeNone, NULL } }; |