diff options
Diffstat (limited to 'src/nvim/mouse.c')
-rw-r--r-- | src/nvim/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/mouse.c b/src/nvim/mouse.c index bf71e6a479..887cbde921 100644 --- a/src/nvim/mouse.c +++ b/src/nvim/mouse.c @@ -641,7 +641,7 @@ static int mouse_adjust_click(win_T *wp, int row, int col) linenr_T lnum = wp->w_cursor.lnum; char_u *line = ml_get(lnum); char_u *ptr = line; - char_u *ptr_end = line; + char_u *ptr_end; char_u *ptr_row_offset = line; // Where we begin adjusting `ptr_end` // Find the offset where scanning should begin. |