(setup__is_cfg_group_must_panel_config): fix coding style.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2024-10-05 14:39:32 +03:00
parent 4b49c82198
commit a92de91616

View File

@ -447,10 +447,10 @@ static const struct
static const char *
setup__is_cfg_group_must_panel_config (const char *grp)
{
return (!strcasecmp ("Dirs", grp) ||
!strcasecmp ("Temporal:New Right Panel", grp) ||
!strcasecmp ("Temporal:New Left Panel", grp) ||
!strcasecmp ("New Left Panel", grp) || !strcasecmp ("New Right Panel", grp))
return (strcasecmp ("Dirs", grp) == 0||
strcasecmp ("Temporal:New Right Panel", grp) == 0||
strcasecmp ("Temporal:New Left Panel", grp) == 0 ||
strcasecmp ("New Left Panel", grp) == 0 || strcasecmp ("New Right Panel", grp) == 0)
? grp : NULL;
}