Constify utf8_width() function argument.

This commit is contained in:
Nicholas Marriott
2009-06-25 16:00:50 +00:00
parent 7eff7f7629
commit 245685433e
2 changed files with 4 additions and 4 deletions

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $OpenBSD: tmux.h,v 1.6 2009/06/04 18:48:24 nicm Exp $ */
/* $OpenBSD: tmux.h,v 1.7 2009/06/24 05:35:07 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -1642,7 +1642,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);