Fix typo. The same one. Again.

I really need a compiler warning about implicit conversion to bool.
This commit is contained in:
Alex Kotov 2021-11-20 17:11:00 +05:00
parent 875c8912c9
commit 592bc54474
Signed by: kotovalexarian
GPG key ID: 553C0EBBEB5D5F08

View file

@ -8,7 +8,7 @@ centeredmaster(Monitor *m)
for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n); for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n);
if (n == 0) return; if (n == 0) return;
const bool master_area_factor = const float master_area_factor =
unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]); unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]);
unsigned int mx = 0; unsigned int mx = 0;
@ -111,7 +111,7 @@ horizontile(Monitor *m)
for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n); for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n);
if (n == 0) return; if (n == 0) return;
const bool master_area_factor = const float master_area_factor =
unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]); unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]);
const bool is_fullscreen = m->sel == NULL ? false : m->sel->isfullscreen; const bool is_fullscreen = m->sel == NULL ? false : m->sel->isfullscreen;
@ -208,7 +208,7 @@ tile(Monitor *m)
for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n); for (Client *c = nexttiled(m->clients); c; c = nexttiled(c->next), ++n);
if (n == 0) return; if (n == 0) return;
const bool master_area_factor = const float master_area_factor =
unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]); unit_get_master_area_factor(m->pertag->units[m->pertag->curtag]);
const bool is_fullscreen = m->sel == NULL ? false : m->sel->isfullscreen; const bool is_fullscreen = m->sel == NULL ? false : m->sel->isfullscreen;