diff options
author | Tom Tromey <tom@tromey.com> | 2022-01-02 11:36:44 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-03-29 12:46:24 -0600 |
commit | 0426ad513f93bb1c5805988e60d6f87fbe738860 (patch) | |
tree | 6ad0f94f9b2a907623df38db9dd7727fe80f5d51 /gdb/mips-linux-nat.c | |
parent | 19a7b8ab871b92dee32a0ebffe274388d3426564 (diff) | |
download | binutils-0426ad513f93bb1c5805988e60d6f87fbe738860.zip binutils-0426ad513f93bb1c5805988e60d6f87fbe738860.tar.gz binutils-0426ad513f93bb1c5805988e60d6f87fbe738860.tar.bz2 |
Unify gdb puts functions
Now that filtered and unfiltered output can be treated identically, we
can unify the puts family of functions. This is done under the name
"gdb_puts". Most of this patch was written by script.
Diffstat (limited to 'gdb/mips-linux-nat.c')
-rw-r--r-- | gdb/mips-linux-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/mips-linux-nat.c b/gdb/mips-linux-nat.c index 20e12b6..3756f98 100644 --- a/gdb/mips-linux-nat.c +++ b/gdb/mips-linux-nat.c @@ -508,7 +508,7 @@ mips_show_dr (const char *func, CORE_ADDR addr, { int i; - fputs_unfiltered (func, gdb_stdlog); + gdb_puts (func, gdb_stdlog); if (addr || len) fprintf_unfiltered (gdb_stdlog, " (addr=%s, len=%d, type=%s)", @@ -518,7 +518,7 @@ mips_show_dr (const char *func, CORE_ADDR addr, : (type == hw_access ? "data-read/write" : (type == hw_execute ? "instruction-execute" : "??unknown??")))); - fputs_unfiltered (":\n", gdb_stdlog); + gdb_puts (":\n", gdb_stdlog); for (i = 0; i < MAX_DEBUG_REGISTER; i++) fprintf_unfiltered (gdb_stdlog, "\tDR%d: lo=%s, hi=%s\n", i, |