1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Add a few missing 'static'.

This commit is contained in:
Simon Tatham 2021-02-02 18:54:39 +00:00
parent af278ac870
commit b63a66cd2c

View File

@ -310,18 +310,18 @@ static bool win_seat_is_utf8(Seat *seat)
return is_utf8();
}
char *win_seat_get_ttymode(Seat *seat, const char *mode)
static char *win_seat_get_ttymode(Seat *seat, const char *mode)
{
return term_get_ttymode(term, mode);
}
bool win_seat_get_window_pixel_size(Seat *seat, int *x, int *y)
static bool win_seat_get_window_pixel_size(Seat *seat, int *x, int *y)
{
win_get_pixels(wintw, x, y);
return true;
}
StripCtrlChars *win_seat_stripctrl_new(
static StripCtrlChars *win_seat_stripctrl_new(
Seat *seat, BinarySink *bs_out, SeatInteractionContext sic)
{
return stripctrl_new_term(bs_out, false, 0, term);