[hackers] [dwm] fixes using arg->i instead of arg->ui || Premysl Hruby

From: <hg_AT_suckless.org>
Date: Tue, 12 Aug 2008 19:25:01 +0000 (UTC)

changeset: 1319:fb29ceb5932a
tag: tip
user: Premysl Hruby <dfenze_AT_gmail.com>
date: Tue Aug 12 21:24:40 2008 +0200
files: dwm.c
description:
fixes using arg->i instead of arg->ui

diff -r 65c37b4be9cb -r fb29ceb5932a 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();
 }
Received on Tue Aug 12 2008 - 19:25:01 UTC

This archive was generated by hypermail 2.2.0 : Tue Aug 12 2008 - 19:36:03 UTC