From: Anselm R Garbe Date: Tue, 14 Jul 2009 15:04:07 +0000 (+0100) Subject: removed int cast in TAGMASK as suggested by nsz X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=da80487c070b4004bf7451b069472b66320030f8;hp=d9779c06fc90879cdf14a65e934f338244e4fcd3 removed int cast in TAGMASK as suggested by nsz --- diff --git a/dwm.c b/dwm.c index 7a6b82f..6ddf266 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 */