Remove spurious newline on debug printf

I noticed a spurious newline on infrun debugging output. The following patch
fixes that. I'll push as obvious.

gdb/ChangeLog:

2020-12-10  Luis Machado  <luis.machado@linaro.org>

	* breakpoint.c (should_be_inserted): Don't output newline.
This commit is contained in:
Luis Machado 2020-12-10 12:16:21 -03:00
parent 6afcd2d416
commit ae1f4d2d99
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2020-12-10 Luis Machado <luis.machado@linaro.org>
* breakpoint.c (should_be_inserted): Don't output newline.
2020-12-10 Luis Machado <luis.machado@linaro.org>
* aarch64-linux-tdep.c (aarch64_linux_restore_vreg) New function.

View file

@ -2173,7 +2173,7 @@ should_be_inserted (struct bp_location *bl)
&& stepping_past_nonsteppable_watchpoint ())
{
infrun_debug_printf ("stepping past non-steppable watchpoint. "
"skipping watchpoint at %s:%d\n",
"skipping watchpoint at %s:%d",
paddress (bl->gdbarch, bl->address), bl->length);
return 0;
}