use named parameter for func prototype

all the other prototypes use names.

Ref. https://git.suckless.org/dwm/commit/9bffa845faa181fb3afe05f3dc86ad79c80736be.html
vertigo
bakkeby 2 years ago
parent 62ca236a91
commit 929f10ea81

@ -1865,7 +1865,7 @@ drawbars(void)
void
drawbarwin(Bar *bar)
{
if (!bar || !bar->win || bar->external)
if (!bar || !bar->win || bar->external || (hidebarmask & (1 << bar->idx)))
return;
int r, w, total_drawn = 0;
int rx, lx, rw, lw; // bar size, split between left and right if a center module is added

Loading…
Cancel
Save