summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-01-01 03:32:28 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-01-01 03:32:28 +0000
commit5d0cfe079b5c1309c40fc5bfd76f7786059577d5 (patch)
treea9c351d830ca940a898a3fd36d873f8b6863c1e7 /tmux.h
parent1c86713afd3e6d42547f64daa520992c74f3cdcd (diff)
Another table that should be const.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux.h b/tmux.h
index 1d198b69..fcf14362 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1426,7 +1426,7 @@ void tty_cmd_reverseindex(struct tty *, const struct tty_ctx *);
/* tty-term.c */
extern struct tty_terms tty_terms;
-extern struct tty_term_code_entry tty_term_codes[NTTYCODE];
+extern const struct tty_term_code_entry tty_term_codes[NTTYCODE];
struct tty_term *tty_term_find(char *, int, const char *, char **);
void tty_term_free(struct tty_term *);
int tty_term_has(struct tty_term *, enum tty_code_code);