summaryrefslogtreecommitdiffstats
path: root/lldb/source/Core/Debugger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/source/Core/Debugger.cpp')
-rw-r--r--lldb/source/Core/Debugger.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lldb/source/Core/Debugger.cpp b/lldb/source/Core/Debugger.cpp
index 45c0653b9d8..dac85c72bba 100644
--- a/lldb/source/Core/Debugger.cpp
+++ b/lldb/source/Core/Debugger.cpp
@@ -2160,7 +2160,7 @@ DebuggerInstanceSettings::ValidTermWidthValue (const char *value, Error err)
// Verify we have a value string.
if (value == NULL || value[0] == '\0')
{
- err.SetErrorString ("Missing value. Can't set terminal width without a value.\n");
+ err.SetErrorString ("missing value, can't set terminal width without a value");
}
else
{
@@ -2172,10 +2172,10 @@ DebuggerInstanceSettings::ValidTermWidthValue (const char *value, Error err)
if (width >= 10 && width <= 1024)
valid = true;
else
- err.SetErrorString ("Invalid term-width value; value must be between 10 and 1024.\n");
+ err.SetErrorString ("invalid term-width value; value must be between 10 and 1024");
}
else
- err.SetErrorStringWithFormat ("'%s' is not a valid unsigned integer string.\n", value);
+ err.SetErrorStringWithFormat ("'%s' is not a valid unsigned integer string", value);
}
return valid;
OpenPOWER on IntegriCloud