summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2012-03-15 09:22:32 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2012-03-15 09:22:32 +0000
commit7cd943bf4276dbfdadcfea1cdee5e678bcb3bd93 (patch)
tree7da82155fe67e2a37da9ba7af3a6d4ae6bfa5e2f
parent4ec5975a24ca3cca1af70c35c51c1bff6548005f (diff)
Fix a warning. Doh.
-rw-r--r--usr.bin/tmux/tty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c
index 3cf61ba3aa8..ad27523acaf 100644
--- a/usr.bin/tmux/tty.c
+++ b/usr.bin/tmux/tty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tty.c,v 1.119 2012/03/15 09:10:33 nicm Exp $ */
+/* $OpenBSD: tty.c,v 1.120 2012/03/15 09:22:31 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -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);