From 4311246bb1f94ca323b0cf74e917d2b8d3a87565 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Fri, 1 Apr 2022 19:04:48 -0600 Subject: Return void from gdb_putc I don't think it's very useful to return the character from gdb_putc, so this patch changes it to return void. --- gdb/utils.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'gdb/utils.c') diff --git a/gdb/utils.c b/gdb/utils.c index 2465bf3..f9dc4f2 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1838,16 +1838,13 @@ fputs_highlighted (const char *str, const compiled_regex &highlight, gdb_puts (str, stream); } -/* Write character C to gdb_stdout using GDB's paging mechanism and return C. - May return nonlocally. */ - -int +void gdb_putc (int c) { return gdb_stdout->putc (c); } -int +void gdb_putc (int c, struct ui_file *stream) { return stream->putc (c); -- cgit v1.1