lint: fix code for clang-tidy

This commit is contained in:
2025-06-21 01:26:49 +02:00
parent 6d30e889d5
commit 938166366f
14 changed files with 167 additions and 154 deletions

View File

@@ -54,7 +54,7 @@ struct session st_session(bool include_defshell) {
}
void st_ch_focus(char direction) {
focused_input = (focused_input + direction) % inputs_n;
focused_input = (focused_input + direction) % INPUTS_N;
ui_update_cursor_focus();
}