diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index afd00c520b7..ebfbb0fe078 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -600,7 +600,7 @@ CommandObject::GetFormattedCommandArguments (Stream &str) str.Printf ("[<%s>]", names.GetData()); break; case eArgRepeatRange: - str.Printf ("<%s_1> .. <%s_n>", names.GetData()); + str.Printf ("<%s_1> .. <%s_n>", names.GetData(), names.GetData()); break; // Explicitly test for all the rest of the cases, so if new types get added we will notice the // missing case statement(s). |