mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
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:
@@ -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.
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user