diff options
author | James McCoy <jamessan@jamessan.com> | 2021-07-18 13:39:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-18 13:39:20 -0400 |
commit | bfb04812d520652ef24f95f227b74c6cc349ba38 (patch) | |
tree | 751008f155781185a6c65880194ef6dfb9b57e42 | |
parent | d9be6ba7966677722a67af06d262c9700345d5f6 (diff) | |
parent | 6f9e219f6083a645e09c6c05156624a3be66b6ce (diff) | |
download | rneovim-bfb04812d520652ef24f95f227b74c6cc349ba38.tar.gz rneovim-bfb04812d520652ef24f95f227b74c6cc349ba38.tar.bz2 rneovim-bfb04812d520652ef24f95f227b74c6cc349ba38.zip |
Merge pull request #15073 from dundargoc/PVS/V751
[RDY] chore(PVS/V751): tui.c, Parameter is not used
-rw-r--r-- | src/nvim/tui/tui.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/tui/tui.c b/src/nvim/tui/tui.c index 431237bac5..70d39339c3 100644 --- a/src/nvim/tui/tui.c +++ b/src/nvim/tui/tui.c @@ -1125,7 +1125,8 @@ static void tui_mode_change(UI *ui, String mode, Integer mode_idx) static void tui_grid_scroll(UI *ui, Integer g, Integer startrow, Integer endrow, Integer startcol, Integer endcol, - Integer rows, Integer cols FUNC_ATTR_UNUSED) + Integer rows, + Integer cols FUNC_ATTR_UNUSED) // -V751 { TUIData *data = ui->data; UGrid *grid = &data->grid; |