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.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142999 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
index 2c50b6e..917fc4d 100644
--- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
+++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
@@ -563,7 +563,7 @@
             }
             else
             {
-                error.SetErrorStringWithFormat("'A' packet returned an error: %i.\n", arg_packet_err);
+                error.SetErrorStringWithFormat("'A' packet returned an error: %i", arg_packet_err);
             }
             
             m_gdb_comm.SetPacketTimeout (old_packet_timeout);
@@ -597,7 +597,7 @@
     {
         // Set our user ID to an invalid process ID.
         SetID(LLDB_INVALID_PROCESS_ID);
-        error.SetErrorStringWithFormat("Failed to get object file from '%s' for arch %s.\n", 
+        error.SetErrorStringWithFormat("failed to get object file from '%s' for arch %s", 
                                        module->GetFileSpec().GetFilename().AsCString(), 
                                        module->GetArchitecture().GetArchitectureName());
     }
@@ -2166,7 +2166,7 @@
         }
         else
         {
-            error.SetErrorStringWithFormat ("Unable to locate " DEBUGSERVER_BASENAME ".\n");
+            error.SetErrorStringWithFormat ("unable to locate " DEBUGSERVER_BASENAME);
         }
 
         if (m_debugserver_pid != LLDB_INVALID_PROCESS_ID)