1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 19:12:48 -05:00

Remove 'is_stderr' parameter from term_data.

It wasn't actually used for anything, and removing it now will save me
deciding what to do with it in the next commit.
This commit is contained in:
Simon Tatham
2021-09-16 14:50:59 +01:00
parent d1dc1e927c
commit a45ae81797
5 changed files with 6 additions and 6 deletions

View File

@ -322,7 +322,7 @@ static size_t gtk_seat_output(Seat *seat, bool is_stderr,
const void *data, size_t len)
{
GtkFrontend *inst = container_of(seat, GtkFrontend, seat);
return term_data(inst->term, is_stderr, data, len);
return term_data(inst->term, data, len);
}
static bool gtk_seat_eof(Seat *seat)