e: double paranthesis as gcc suggests

Since we assign and check for true value in one operation, use double
paranthesis.
This commit is contained in:
Sebastian Dransfeld 2013-12-10 20:30:15 +01:00
parent 5820112ba3
commit 43a4f21e06
1 changed files with 1 additions and 1 deletions

View File

@ -829,7 +829,7 @@ ACT_FN_GO(window_border_cycle, __UNUSED__)
{
const char *bdname = params;
while (space = strchr(bdname, ' '))
while ((space = strchr(bdname, ' ')))
{
if (strncmp(bd->bordername, bdname, space - bdname) == 0)
{