From af8049bce8e20818f50e6197d0212be24dce358e Mon Sep 17 00:00:00 2001
From: "a@null" <unknown>
Date: Sat, 20 Dec 2008 12:02:14 +0000
Subject: spotted missing spaces

---
 dwm.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dwm.c b/dwm.c
index 77a91ac..c9a6b0a 100644
--- a/dwm.c
+++ b/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) {
-- 
cgit v1.2.3