浏览代码

spotted missing spaces

a@null 17 年之前
父节点
当前提交
af8049bce8
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      dwm.c

+ 2 - 2
dwm.c

@@ -1147,8 +1147,8 @@ resizemouse(const Arg *arg) {
 			handler[ev.type](&ev);
 			break;
 		case MotionNotify:
-			nw = MAX(ev.xmotion.x - ocx - 2*c->bw + 1, 1);
-			nh = MAX(ev.xmotion.y - ocy - 2*c->bw + 1, 1);
+			nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
+			nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
 
 			if(snap && nw >= wx && nw <= wx + ww
 			        && nh >= wy && nh <= wy + wh) {