about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R. Garbe <garbeam@gmail.com>2007-10-03 16:25:25 +0200
committerAnselm R. Garbe <garbeam@gmail.com>2007-10-03 16:25:25 +0200
commit7e25897f1108b1b24b3a1d4ebe69cfa6de1d08f0 (patch)
tree5c140f7b57f6a8b0f9a0ba48e8c293b3d9e85fd0 /dwm.c
parent95091dcad461f77a641c1c4fe87d49576b79e3fe (diff)
downloaddwm-7e25897f1108b1b24b3a1d4ebe69cfa6de1d08f0.tar.gz
removed two spaces reported by Soleen
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dwm.c b/dwm.c
index 50f4ea0..6a21d3f 100644
--- a/dwm.c
+++ b/dwm.c
@@ -63,7 +63,7 @@ struct Client {
 	int rx, ry, rw, rh; /* revert geometry */
 	int basew, baseh, incw, inch, maxw, maxh, minw, minh;
 	int minax, maxax, minay, maxay;
-	long flags; 
+	long flags;
 	unsigned int border, oldborder;
 	Bool isbanned, isfixed, ismax, isfloating, wasfloating;
 	Bool *tags;
@@ -1162,7 +1162,7 @@ quit(const char *arg) {
 void
 resize(Client *c, int x, int y, int w, int h, Bool sizehints) {
 	double dx, dy, max, min, ratio;
-	XWindowChanges wc; 
+	XWindowChanges wc;
 
 	if(sizehints) {
 		if(c->minay > 0 && c->maxay > 0 && (h - c->baseh) > 0 && (w - c->basew) > 0) {