X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=dwm.c;h=c9495ec1fd12cb43b5466e2303e0a60a9a8dfb9d;hb=883e09b2eb8b6a42289bc5a64294df4122d90e38;hp=50f4ea0b685133340f66d443ee4a5b6fa4805303;hpb=3f3086f8b87aed5bf443c8fbcbe32e052fc9c17d;p=dwm.git diff --git a/dwm.c b/dwm.c index 50f4ea0..c9495ec 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) { @@ -1467,7 +1467,7 @@ setup(void) { /* init tags */ compileregs(); - for(ntags = 0; tags[ntags]; ntags++); + ntags = sizeof tags / sizeof tags[0]; seltags = emallocz(sizeof(Bool) * ntags); seltags[0] = True;