diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-07-10 14:11:43 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-07-10 14:11:43 +0000 |
commit | 88ddd7e4cba212b732cb8f6e0994c1655a38cc3e (patch) | |
tree | 78580a5b4b0fa673600ebce4366f1150426ab34b /app/cwm/conf.c | |
parent | 74a6bc2ce05ea78bb1da4c70a6cfd9af18a5a7b5 (diff) |
type fixes
Diffstat (limited to 'app/cwm/conf.c')
-rw-r--r-- | app/cwm/conf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/conf.c b/app/cwm/conf.c index 5da4a1327..fb585052a 100644 --- a/app/cwm/conf.c +++ b/app/cwm/conf.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: conf.c,v 1.141 2013/07/08 18:39:20 okan Exp $ + * $OpenBSD: conf.c,v 1.142 2013/07/10 14:11:42 okan Exp $ */ #include <sys/param.h> @@ -99,8 +99,8 @@ static char *color_binds[] = { void conf_screen(struct screen_ctx *sc) { - int i; - XftColor xc; + u_int i; + XftColor xc; sc->gap = Conf.gap; |