e: remove un-needed NULL check.

bdname = params, which is already checked

CID 1039830, 1039831
This commit is contained in:
Sebastian Dransfeld 2013-12-10 20:19:46 +01:00 committed by Cedric BAIL
parent 5fbac0819f
commit 5a4755ee1e
1 changed files with 1 additions and 1 deletions

View File

@ -831,7 +831,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)
{