OSDN Git Service

ARI fixes: Messages should have no trailing new lines.
authormuller <muller>
Fri, 18 Mar 2011 13:09:46 +0000 (13:09 +0000)
committermuller <muller>
Fri, 18 Mar 2011 13:09:46 +0000 (13:09 +0000)
* darwin-nat.c (mach_check_error): Remove trailing new line from
warning function call message.
* record.c (bfdcore_read): Idem for error call.

gdb/ChangeLog
gdb/darwin-nat.c
gdb/record.c

index 65771e5..60f9fd7 100644 (file)
@@ -1,5 +1,12 @@
 2011-03-18  Pierre Muller  <muller@ics.u-strasbg.fr>
 
+       ARI fixes: Messages should have no trailing new lines.
+       * darwin-nat.c (mach_check_error): Remove trailing new line from
+       warning function call message.
+       * record.c (bfdcore_read): Idem for error call.
+
+2011-03-18  Pierre Muller  <muller@ics.u-strasbg.fr>
+
        * common/signals.c (target_signal_from_host): Add _ markup to error
        function call message.
        (target_signal_to_host): Add _ markup and remove trailing new line
index 4e316bb..7be85d5 100644 (file)
@@ -196,7 +196,7 @@ mach_check_error (kern_return_t ret, const char *file,
   if (func == NULL)
     func = _("[UNKNOWN]");
 
-  warning (_("Mach error at \"%s:%u\" in function \"%s\": %s (0x%lx)\n"),
+  warning (_("Mach error at \"%s:%u\" in function \"%s\": %s (0x%lx)"),
           file, line, func, mach_error_string (ret), (unsigned long) ret);
 }
 
index 7cc26da..1195038 100644 (file)
@@ -2154,7 +2154,7 @@ bfdcore_read (bfd *obfd, asection *osec, void *buf, int len, int *offset)
   if (ret)
     *offset += len;
   else
-    error (_("Failed to read %d bytes from core file %s ('%s').\n"),
+    error (_("Failed to read %d bytes from core file %s ('%s')."),
           len, bfd_get_filename (obfd),
           bfd_errmsg (bfd_get_error ()));
 }