From 86edbf41d1ad98b057f0e4e14bbd47eb3b6014f9 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Wed, 26 Oct 2011 00:56:27 +0000 Subject: Cleaned up many error codes. For any who is filling in error strings into lldb_private::Error objects the rules are: - short strings that don't start with a capitol letter unless the name is a class or anything else that is always capitolized - no trailing newline character - should be one line if possible Implemented a first pass at adding "--gdb-format" support to anything that accepts format with optional size/count. llvm-svn: 142999 --- lldb/source/Commands/CommandObjectSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Commands/CommandObjectSettings.cpp') diff --git a/lldb/source/Commands/CommandObjectSettings.cpp b/lldb/source/Commands/CommandObjectSettings.cpp index e43c16a0743..2421af5e882 100644 --- a/lldb/source/Commands/CommandObjectSettings.cpp +++ b/lldb/source/Commands/CommandObjectSettings.cpp @@ -265,7 +265,7 @@ CommandObjectSettingsSet::CommandOptions::SetOptionValue (uint32_t option_idx, c m_reset = true; break; default: - error.SetErrorStringWithFormat ("Unrecognized options '%c'.\n", short_option); + error.SetErrorStringWithFormat ("unrecognized options '%c'", short_option); break; } -- cgit v1.2.3