diff options
author | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:39:17 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2011-04-08 22:39:17 +0000 |
commit | f16066e842df736ebbbd06c46a37c4221ca71e4e (patch) | |
tree | f44197cdf3eff42507898819aa03e41a933adb9d /lldb/source/Commands/CommandObjectImage.cpp | |
parent | 298de937e727db7e5a1526d70504200cd403db28 (diff) | |
download | bcm5719-llvm-f16066e842df736ebbbd06c46a37c4221ca71e4e.tar.gz bcm5719-llvm-f16066e842df736ebbbd06c46a37c4221ca71e4e.zip |
Really fix the test suite crasher this time.
llvm-svn: 129165
Diffstat (limited to 'lldb/source/Commands/CommandObjectImage.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectImage.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectImage.cpp b/lldb/source/Commands/CommandObjectImage.cpp index a59aff00d9c..3d005a80526 100644 --- a/lldb/source/Commands/CommandObjectImage.cpp +++ b/lldb/source/Commands/CommandObjectImage.cpp @@ -721,7 +721,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter), + Options(interpreter), m_sort_order (eSortOrderNone) { } @@ -1142,7 +1142,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter), + Options(interpreter), m_format_array() { } @@ -1349,7 +1349,7 @@ public: public: CommandOptions (CommandInterpreter &interpreter) : - Options(m_interpreter) + Options(interpreter) { ResetOptionValues(); } |