1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 11:32: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

@ -5737,7 +5737,7 @@ static void flip_full_screen()
static size_t win_seat_output(Seat *seat, bool is_stderr,
const void *data, size_t len)
{
return term_data(term, is_stderr, data, len);
return term_data(term, data, len);
}
static bool win_seat_eof(Seat *seat)