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/mep-tdep.c | |
parent | 0426ad513f93bb1c5805988e60d6f87fbe738860 (diff) | |
download | gdb-a11ac3b3e8ff6769badcf0041894f6c5acc1b94f.zip gdb-a11ac3b3e8ff6769badcf0041894f6c5acc1b94f.tar.gz gdb-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/mep-tdep.c')
-rw-r--r-- | gdb/mep-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mep-tdep.c b/gdb/mep-tdep.c index 11d79a0..696d9c6 100644 --- a/gdb/mep-tdep.c +++ b/gdb/mep-tdep.c @@ -2369,7 +2369,7 @@ mep_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches) const char *file_endianness = bfd_big_endian (info.abfd) ? "big" : "little"; - fputc_unfiltered ('\n', gdb_stderr); + gdb_putc ('\n', gdb_stderr); if (module_name) warning (_("the MeP module '%s' is %s-endian, but the executable\n" "%s is %s-endian."), |