aboutsummarylogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe2009-07-14 16:04:07 +0100
committerAnselm R Garbe2009-07-14 16:04:07 +0100
commit9bab37877017f61e209b981c8e99c426c7559431 (patch)
treefd279d6a2b32b2972ce49b354f16c1bfc64ff918 /dwm.c
parentcc485f821f7fdff081ab635305eb0ac2dd39c3e4 (diff)
downloadaur-9bab37877017f61e209b981c8e99c426c7559431.tar.gz
removed int cast in TAGMASK as suggested by nsz
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 7a6b82f48b8d..6ddf266fbcba 100644
--- a/dwm.c
+++ b/dwm.c
@@ -51,7 +51,7 @@
#define MOUSEMASK (BUTTONMASK|PointerMotionMask)
#define WIDTH(X) ((X)->w + 2 * (X)->bw)
#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
-#define TAGMASK ((int)((1 << LENGTH(tags)) - 1))
+#define TAGMASK ((1 << LENGTH(tags)) - 1)
#define TEXTW(X) (textnw(X, strlen(X)) + dc.font.height)
/* enums */