aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectRegister.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Commands/CommandObjectRegister.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectRegister.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectRegister.cpp b/lldb/source/Commands/CommandObjectRegister.cpp
index 2607854..d3c8d63 100644
--- a/lldb/source/Commands/CommandObjectRegister.cpp
+++ b/lldb/source/Commands/CommandObjectRegister.cpp
@@ -159,7 +159,7 @@ protected:
CommandOptions (CommandInterpreter &interpreter) :
Options(interpreter)
{
- ResetOptionValues();
+ OptionParsingStarting();
}
virtual
@@ -168,7 +168,7 @@ protected:
}
virtual Error
- SetOptionValue (int option_idx, const char *option_arg)
+ SetOptionValue (uint32_t option_idx, const char *option_arg)
{
Error error;
char short_option = (char) m_getopt_table[option_idx].val;
@@ -186,7 +186,7 @@ protected:
}
void
- ResetOptionValues ()
+ OptionParsingStarting ()
{
m_format = eFormatBytes;
}