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/CommandObjectSettings.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/CommandObjectSettings.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectSettings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectSettings.cpp b/lldb/source/Commands/CommandObjectSettings.cpp index fe5b1466..e55da23 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -292,7 +292,7 @@ private: OptionDefinition CommandObjectSettingsSet::CommandOptions::g_option_table[] = { - { LLDB_OPT_SET_2, false, "global", 'g', no_argument, NULL, NULL, eArgTypeNone, "Apply the new value to the global default value." }, + { LLDB_OPT_SET_2, false, "global", 'g', no_argument, NULL, 0, eArgTypeNone, "Apply the new value to the global default value." }, { 0, false, NULL, 0, 0, NULL, 0, eArgTypeNone, NULL } }; |