fixes using arg->i instead of arg->ui
authorPremysl Hruby <dfenze@gmail.com>
Tue, 12 Aug 2008 21:24:40 +0200
changeset 1319 fb29ceb5932a
parent 1318 65c37b4be9cb
child 1320 a63cb246f35c
fixes using arg->i instead of arg->ui
dwm.c
--- a/dwm.c	Mon Aug 04 17:39:36 2008 +0100
+++ b/dwm.c	Tue Aug 12 21:24:40 2008 +0200
@@ -347,7 +347,7 @@
 
 void
 cleanup(void) {
-	Arg a = {.i = ~0};
+	Arg a = {.ui = ~0};
 	Layout foo = { "", NULL };
 
 	close(STDIN_FILENO);
@@ -1640,11 +1640,11 @@
 
 void
 view(const Arg *arg) {
-	if(arg && (arg->i & TAGMASK) == tagset[seltags])
+	if(arg && (arg->ui & TAGMASK) == tagset[seltags])
 		return;
 	seltags ^= 1; /* toggle sel tagset */
 	if(arg && (arg->ui & TAGMASK))
-		tagset[seltags] = arg->i & TAGMASK;
+		tagset[seltags] = arg->ui & TAGMASK;
 	clearurgent();
 	arrange();
 }