summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-06-24 05:35:07 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-06-24 05:35:07 +0000
commit27cfa81110c26d2505d50443c330324faa8bf49b (patch)
tree7ed136039c13a853a6bbd890aa3551692f388e0b /tmux.h
parent013b88dfc308691c5bbbeca23b567a6e27ebc735 (diff)
Constify utf8_width() function argument.
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 645e5003..04088a16 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1521,7 +1521,7 @@ int session_last(struct session *);
/* utf8.c */
void utf8_build(void);
-int utf8_width(u_char *);
+int utf8_width(const u_char *);
/* util.c */
char *section_string(char *, size_t, size_t, size_t);