aboutsummaryrefslogtreecommitdiffstats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2009-07-17 15:28:07 +0100
committerAnselm R Garbe <garbeam@gmail.com>2009-07-17 15:28:07 +0100
commit999d6e795f26f85e4b4b59adb7637ec067a9deee (patch)
treea88748f28855dfe4abb5eaa623cd3f2b07287b9a /dwm.c
parent636075297cb9f2970955a64ea86154bda7b51fe5 (diff)
downloaddwm-999d6e795f26f85e4b4b59adb7637ec067a9deee.tar.gz
removed misleading comment
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 289b508..e22ea7a 100644
--- a/dwm.c
+++ b/dwm.c
@@ -350,9 +350,9 @@ applysizehints(Client *c, int *x, int *y, int *w, int *h, Bool interact) {
/* adjust for aspect limits */
if(c->mina > 0 && c->maxa > 0) {
if(c->maxa < (float)*w / *h)
- *w = *h * c->maxa + 0.5; /* -Os double upcast workaround */
+ *w = *h * c->maxa + 0.5;
else if(c->mina < (float)*h / *w)
- *h = *w * c->mina + 0.5; /* -Os double upcast workaround */
+ *h = *w * c->mina + 0.5;
}
if(baseismin) { /* increment calculation requires this */
*w -= c->basew;
remember that computers suck.