about summary refs log tree commit diff
path: root/conf.c
diff options
context:
space:
mode:
authorokan <okan>2013-05-10 16:05:34 +0000
committerokan <okan>2013-05-10 16:05:34 +0000
commite05c0a2c600d22841d6950abf6fc013efe6a7cad (patch)
tree78d222f1cc0181b1c6904094d0a03401943169a1 /conf.c
parent457938fbd750388907876ce30a98b216ae758922 (diff)
downloadcwm-e05c0a2c600d22841d6950abf6fc013efe6a7cad.tar.gz
cwm-e05c0a2c600d22841d6950abf6fc013efe6a7cad.tar.xz
cwm-e05c0a2c600d22841d6950abf6fc013efe6a7cad.zip
int type fixes
Diffstat (limited to 'conf.c')
-rw-r--r--conf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/conf.c b/conf.c
index 06d4e1c..ee18fcd 100644
--- a/conf.c
+++ b/conf.c
@@ -195,7 +195,7 @@ m_binds[] = {
 void
 conf_init(struct conf *c)
 {
-	int	i;
+	u_int	i;
 
 	bzero(c, sizeof(*c));
 
@@ -459,7 +459,7 @@ conf_bindname(struct conf *c, char *name, char *binding)
 {
 	struct keybinding	*current_binding;
 	char			*substring, *tmp;
-	int			 i;
+	u_int			 i;
 
 	current_binding = xcalloc(1, sizeof(*current_binding));
 
@@ -564,7 +564,7 @@ conf_mousebind(struct conf *c, char *name, char *binding)
 	struct mousebinding	*current_binding;
 	char			*substring, *tmp;
 	const char		*errstr;
-	int			 i;
+	u_int			 i;
 
 	current_binding = xcalloc(1, sizeof(*current_binding));