diff options
Diffstat (limited to 'gdb/rust-lang.c')
-rw-r--r-- | gdb/rust-lang.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/rust-lang.c b/gdb/rust-lang.c index 7689245..6738243 100644 --- a/gdb/rust-lang.c +++ b/gdb/rust-lang.c @@ -1608,7 +1608,7 @@ rust_language::emitchar (int ch, struct type *chtype, else if (ch == '\0') gdb_puts ("\\0", stream); else if (ch >= 32 && ch <= 127 && isprint (ch)) - fputc_filtered (ch, stream); + gdb_putc (ch, stream); else if (ch <= 255) fprintf_filtered (stream, "\\x%02x", ch); else |