diff options
Diffstat (limited to 'lldb/source/Interpreter/CommandInterpreter.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandInterpreter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandInterpreter.cpp b/lldb/source/Interpreter/CommandInterpreter.cpp index a3f0d4f96d7..bdab6eca30a 100644 --- a/lldb/source/Interpreter/CommandInterpreter.cpp +++ b/lldb/source/Interpreter/CommandInterpreter.cpp @@ -2597,7 +2597,8 @@ void CommandInterpreter::OutputHelpText(Stream &strm, const char *word_text, for (uint32_t i = 0; i < len; i++) { if ((text[i] == ' ' && ::strchr((text + i + 1), ' ') && - chars_left < ::strchr((text + i + 1), ' ') - (text + i)) || + chars_left < static_cast<uint32_t>(::strchr((text + i + 1), ' ') - + (text + i))) || text[i] == '\n') { chars_left = max_columns - indent_size; strm.EOL(); |