use consistent types

This commit is contained in:
okan
2014-01-03 15:29:06 +00:00
parent 08342471c8
commit 43ccf4eae0
9 changed files with 43 additions and 43 deletions

4
menu.c
View File

@ -522,8 +522,8 @@ menu_calc_entry(struct menu_ctx *mc, int x, int y)
static int
menu_keycode(XKeyEvent *ev, enum ctltype *ctl, char *chr)
{
KeySym ks;
u_int state = ev->state;
KeySym ks;
unsigned int state = ev->state;
*ctl = CTL_NONE;
chr[0] = '\0';