aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2009-01-17 18:38:12 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2009-01-17 18:38:12 +0000
commitff61eee294124bc83f399e0027de1c9d7a9d9e86 (patch)
tree0629d2233db137ca656fcded725e628f14cfc2ed /tmux.h
parentd5820171b790d3bc4a9584e30be6e0f3098f1791 (diff)
downloadrtmux-ff61eee294124bc83f399e0027de1c9d7a9d9e86.tar.gz
rtmux-ff61eee294124bc83f399e0027de1c9d7a9d9e86.tar.bz2
rtmux-ff61eee294124bc83f399e0027de1c9d7a9d9e86.zip
Don't use [4] since they are confusing and use the right size for memset. DOH.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index 8da7d8cf..0994c322 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1,4 +1,4 @@
-/* $Id: tmux.h,v 1.235 2009-01-15 19:27:31 nicm Exp $ */
+/* $Id: tmux.h,v 1.236 2009-01-17 18:38:12 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -1463,8 +1463,8 @@ int session_select(struct session *, int);
int session_last(struct session *);
/* utf8.c */
-u_int utf8_combine(const u_char [4]);
-void utf8_split(u_int, u_char [4]);
+u_int utf8_combine(const u_char *);
+void utf8_split(u_int, u_char *);
int utf8_width(u_int);
/* buffer.c */