From b63a66cd2c96a0e44af96a03adb3081a9d93ecb3 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 2 Feb 2021 18:54:39 +0000 Subject: [PATCH] Add a few missing 'static'. --- windows/window.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/window.c b/windows/window.c index 137c5416..cae0172d 100644 --- a/windows/window.c +++ b/windows/window.c @@ -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);