From: Joel Brobecker Date: Wed, 22 Nov 2017 22:30:41 +0000 (-0800) Subject: (Ada) ravenscar-thread.c: remove unwanted trailing \n in call to warning X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8f6cb6c33815f38b41e1e93e59f12869db07c070;p=binutils-gdb.git (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. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index ddf3852cfcd..5323c27733b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2017-11-22 Joel Brobecker + + * ravenscar-thread.c (ravenscar_inferior_created): Remove + trailing newline at end of string in call to warning. + 2017-11-22 Simon Marchi * osdata.h: Include vector isntead of vec.h. diff --git a/gdb/ravenscar-thread.c b/gdb/ravenscar-thread.c index 30745f7caac..c2d87838ce5 100644 --- a/gdb/ravenscar-thread.c +++ b/gdb/ravenscar-thread.c @@ -537,7 +537,7 @@ ravenscar_inferior_created (struct target_ops *target, int from_tty) err_msg = ada_get_tcb_types_info (); if (err_msg != NULL) { - warning (_("%s. Task/thread support disabled.\n"), err_msg); + warning (_("%s. Task/thread support disabled."), err_msg); return; }