diff options
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 62657bed2d0..33af62f66ee 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -308,7 +308,7 @@ CommandObjectSettingsShow::Execute (CommandInterpreter &interpreter, else { result.AppendMessageWithFormat ("%s%s:\n", variable_name, type_name); - for (int i = 0; i < value.GetSize(); ++i) + for (unsigned i = 0, e = value.GetSize(); i != e; ++i) { result.AppendMessageWithFormat (" [%d]: '%s'\n", i, value.GetStringAtIndex (i)); } |