From 9ad028e8ee183c96e0973aaf785bf849307e01a7 Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Mon, 3 Jan 2011 23:30:43 +0000 Subject: Sync OpenBSD patchset 822: Another table that should be const. --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') diff --git a/tmux.h b/tmux.h index ac79f84f..c4841417 100644 --- a/tmux.h +++ b/tmux.h @@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.597 2011-01-03 23:27:54 tcunha Exp $ */ +/* $Id: tmux.h,v 1.598 2011-01-03 23:30:43 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -1422,7 +1422,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); -- cgit