diff options
Diffstat (limited to 'src/nvim/plines.c')
-rw-r--r-- | src/nvim/plines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/plines.c b/src/nvim/plines.c index 461f69ae6c..2649977133 100644 --- a/src/nvim/plines.c +++ b/src/nvim/plines.c @@ -108,7 +108,7 @@ void win_linetabsize_cts(chartabsize_T *cts, colnr_T len) } // check for inline virtual text after the end of the line if (len == MAXCOL && cts->cts_has_virt_text && *cts->cts_ptr == NUL) { - (void)win_lbr_chartabsize(cts, NULL); + win_lbr_chartabsize(cts, NULL); cts->cts_vcol += cts->cts_cur_text_width_left + cts->cts_cur_text_width_right; } } |