diff options
Diffstat (limited to 'window-clock.c')
-rw-r--r-- | window-clock.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/window-clock.c b/window-clock.c index d23ac136..9ecc68a1 100644 --- a/window-clock.c +++ b/window-clock.c @@ -24,7 +24,8 @@ #include "tmux.h" -static struct screen *window_clock_init(struct window_pane *); +static struct screen *window_clock_init(struct window_pane *, + struct cmd_find_state *, struct args *); static void window_clock_free(struct window_pane *); static void window_clock_resize(struct window_pane *, u_int, u_int); static void window_clock_key(struct window_pane *, struct client *, @@ -145,7 +146,8 @@ window_clock_timer_callback(__unused int fd, __unused short events, void *arg) } static struct screen * -window_clock_init(struct window_pane *wp) +window_clock_init(struct window_pane *wp, __unused struct cmd_find_state *fs, + __unused struct args *args) { struct window_clock_mode_data *data; struct screen *s; |