From 27cfa81110c26d2505d50443c330324faa8bf49b Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 24 Jun 2009 05:35:07 +0000 Subject: Constify utf8_width() function argument. --- tmux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tmux.h') 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); -- cgit