diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-01-17 19:00:05 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-01-17 19:00:05 +0000 |
commit | dfc2ad1e5f7457f757a120e98fb397f10895059f (patch) | |
tree | 4329d5a079866abd3c252ea97db4daaf5c8d3b5b /window-choose.c | |
parent | 38ee1e66aa50512ee8b78af721d41280e32ab31f (diff) | |
download | rtmux-dfc2ad1e5f7457f757a120e98fb397f10895059f.tar.gz rtmux-dfc2ad1e5f7457f757a120e98fb397f10895059f.tar.bz2 rtmux-dfc2ad1e5f7457f757a120e98fb397f10895059f.zip |
Sync OpenBSD patchset 607:
key should be an int not a char.
Diffstat (limited to 'window-choose.c')
-rw-r--r-- | window-choose.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/window-choose.c b/window-choose.c index 6cb2a600..e77bfa75 100644 --- a/window-choose.c +++ b/window-choose.c @@ -1,4 +1,4 @@ -/* $Id: window-choose.c,v 1.27 2009-12-04 22:14:47 tcunha Exp $ */ +/* $Id: window-choose.c,v 1.28 2010-01-17 19:00:05 tcunha 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"); |