use similiar style for client flags

This commit is contained in:
okan
2014-09-15 13:00:49 +00:00
parent 26b95de019
commit 4b6dc96398
4 changed files with 7 additions and 7 deletions

View File

@@ -102,7 +102,7 @@ search_match_client(struct menu_q *menuq, struct menu_q *resultq, char *search)
tier++;
/* Clients that are hidden get ranked one up. */
if (cc->flags & CLIENT_HIDDEN && tier > 0)
if ((cc->flags & CLIENT_HIDDEN) && (tier > 0))
tier--;
assert(tier < nitems(tierp));