mirror of https://github.com/MidnightCommander/mc
(update_split): cleanup cppcheck warning.
Cleanup following cppcheck warnings: [src/filemanager/layout.c:231]: (style) Clarify calculation precedence for '&' and '?'. Signed-off-by: Andreas Mohr <and@gmx.li> Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
parent
67035605b9
commit
f03bb30a5a
|
@ -228,7 +228,7 @@ update_split (const WDialog * h)
|
|||
check_options[0].widget->state = panels_layout.vertical_equal ? 1 : 0;
|
||||
widget_redraw (WIDGET (check_options[0].widget));
|
||||
|
||||
tty_setcolor (check_options[0].widget->state & C_BOOL ? DISABLED_COLOR : COLOR_NORMAL);
|
||||
tty_setcolor ((check_options[0].widget->state & C_BOOL) ? DISABLED_COLOR : COLOR_NORMAL);
|
||||
|
||||
widget_move (h, 6, 5);
|
||||
if (panels_layout.horizontal_split)
|
||||
|
|
Loading…
Reference in New Issue