removed int cast in TAGMASK as suggested by nsz da80487c
Anselm R Garbe · 2009-07-14 16:04 1 file(s) · +1 −1
dwm.c +1 −1
51 51
#define MOUSEMASK               (BUTTONMASK|PointerMotionMask)
52 52
#define WIDTH(X)                ((X)->w + 2 * (X)->bw)
53 53
#define HEIGHT(X)               ((X)->h + 2 * (X)->bw)
54 -
#define TAGMASK                 ((int)((1 << LENGTH(tags)) - 1))
54 +
#define TAGMASK                 ((1 << LENGTH(tags)) - 1)
55 55
#define TEXTW(X)                (textnw(X, strlen(X)) + dc.font.height)
56 56
57 57
/* enums */