spotted missing spaces af8049bc
a@null · 2008-12-20 12:02 1 file(s) · +2 −2
dwm.c +2 −2
1147 1147
			handler[ev.type](&ev);
1148 1148
			break;
1149 1149
		case MotionNotify:
1150 -
			nw = MAX(ev.xmotion.x - ocx - 2*c->bw + 1, 1);
1151 -
			nh = MAX(ev.xmotion.y - ocy - 2*c->bw + 1, 1);
1150 +
			nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
1151 +
			nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
1152 1152
1153 1153
			if(snap && nw >= wx && nw <= wx + ww
1154 1154
			        && nh >= wy && nh <= wy + wh) {