mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
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:
parent
28e698f1b0
commit
4f1cdeec10
@ -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
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
@ -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 ()));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user