diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-11 23:46:23 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2010-01-11 23:46:23 +0000 |
commit | 26a1d420680d7c7483ea66090b72208f2bfabb52 (patch) | |
tree | 4b95f4bed32066513eaa5a94759dc9c9bc1c3d82 /usr.bin/tmux | |
parent | 1f7ae689aefee837a9fbbe6591fce0443930c880 (diff) |
key should be an int not a char.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r-- | usr.bin/tmux/window-choose.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/tmux/window-choose.c b/usr.bin/tmux/window-choose.c index dec406bfd95..d6c6669f5ae 100644 --- a/usr.bin/tmux/window-choose.c +++ b/usr.bin/tmux/window-choose.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-choose.c,v 1.13 2009/12/03 22:50:10 nicm Exp $ */ +/* $OpenBSD: window-choose.c,v 1.14 2010/01/11 23:46:22 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -312,8 +312,7 @@ window_choose_write_line( struct options *oo = &wp->window->options; struct screen *s = &data->screen; struct grid_cell gc; - int utf8flag; - char key; + int utf8flag, key; if (data->callbackfn == NULL) fatalx("called before callback assigned"); |