mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-24 10:35:12 +08:00
(Ada) ravenscar-thread.c: remove unwanted trailing \n in call to warning
A recent patch introduced a call to warning, and the string used had a trailing newline, which is not correct; the nightly ARI run caught it, so this patch removes it. gdb/ChangeLog: * ravenscar-thread.c (ravenscar_inferior_created): Remove trailing newline at end of string in call to warning. Tested on powerpc-eabispe, no regression.
This commit is contained in:
parent
479f8de1b3
commit
8f6cb6c338
@ -1,3 +1,8 @@
|
|||||||
|
2017-11-22 Joel Brobecker <brobecker@adacore.com>
|
||||||
|
|
||||||
|
* ravenscar-thread.c (ravenscar_inferior_created): Remove
|
||||||
|
trailing newline at end of string in call to warning.
|
||||||
|
|
||||||
2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
|
2017-11-22 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* osdata.h: Include vector isntead of vec.h.
|
* osdata.h: Include vector isntead of vec.h.
|
||||||
|
@ -537,7 +537,7 @@ ravenscar_inferior_created (struct target_ops *target, int from_tty)
|
|||||||
err_msg = ada_get_tcb_types_info ();
|
err_msg = ada_get_tcb_types_info ();
|
||||||
if (err_msg != NULL)
|
if (err_msg != NULL)
|
||||||
{
|
{
|
||||||
warning (_("%s. Task/thread support disabled.\n"), err_msg);
|
warning (_("%s. Task/thread support disabled."), err_msg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user