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.
This commit is contained in:
Pierre Muller 2011-03-18 13:09:47 +00:00
parent 28e698f1b0
commit 4f1cdeec10
3 changed files with 9 additions and 2 deletions

View File

@ -1,3 +1,10 @@
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

View 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);
}

View 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 ()));
}