diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:42:07 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | a11ac3b3e8ff6769badcf0041894f6c5acc1b94f (patch) | |
tree | 09cfacc40b2fbe929ca0013869915ddce49378ba /gdb/breakpoint.c | |
parent | 0426ad513f93bb1c5805988e60d6f87fbe738860 (diff) | |
download | binutils-a11ac3b3e8ff6769badcf0041894f6c5acc1b94f.zip binutils-a11ac3b3e8ff6769badcf0041894f6c5acc1b94f.tar.gz binutils-a11ac3b3e8ff6769badcf0041894f6c5acc1b94f.tar.bz2 |
Unify gdb putc functions
Now that filtered and unfiltered output can be treated identically, we
can unify the putc family of functions. This is done under the name
"gdb_putc". Most of this patch was written by script.
Diffstat (limited to 'gdb/breakpoint.c')
-rw-r--r-- | gdb/breakpoint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c index ebcefde..60d343e 100644 --- a/gdb/breakpoint.c +++ b/gdb/breakpoint.c @@ -11069,7 +11069,7 @@ clear_command (const char *arg, int from_tty) delete_breakpoint (iter); } if (from_tty) - putchar_filtered ('\n'); + gdb_putc ('\n'); } /* Delete breakpoint in BS if they are `delete' breakpoints and |