From 005566f915030d269fdf7a42e619f8469099b0f0 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott <nicm@openbsd.org> Date: Thu, 15 Mar 2012 09:22:31 +0000 Subject: [PATCH] Fix a warning. Doh. --- tty.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tty.c b/tty.c index 7c54913d..5494ad4d 100644 --- a/tty.c +++ b/tty.c @@ -43,6 +43,7 @@ void tty_check_bg(struct tty *, struct grid_cell *); void tty_colours_fg(struct tty *, const struct grid_cell *); void tty_colours_bg(struct tty *, const struct grid_cell *); +int tty_large_region(struct tty *, const struct tty_ctx *); void tty_redraw_region(struct tty *, const struct tty_ctx *); void tty_emulate_repeat( struct tty *, enum tty_code_code, enum tty_code_code, u_int);