From ddd4ed3ce57027eeee72041e98f7bf576b01a370 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 13 Jan 2019 17:10:46 +0100 Subject: clang/"Dead assignment" --- src/nvim/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/mouse.c') 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. -- cgit