aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-09-08 08:52:45 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-09-08 08:54:14 +0800
commit06f9da547cbcc0b12c2d946a0abe0aee0bad4011 (patch)
treeffbfa97fe274f8a08dd01eb0e10c24e38df813ef
parent80a566b55fd90fb49271e04106ddafb8ccb470cb (diff)
downloadrneovim-06f9da547cbcc0b12c2d946a0abe0aee0bad4011.tar.gz
rneovim-06f9da547cbcc0b12c2d946a0abe0aee0bad4011.tar.bz2
rneovim-06f9da547cbcc0b12c2d946a0abe0aee0bad4011.zip
vim-patch:9.0.0412: compiler warning for unused argument
Problem: Compiler warning for unused argument. Solution: Add UNUSED. https://github.com/vim/vim/commit/e5a420fb33518e08313f653f3031bc36f949e086
-rw-r--r--src/nvim/plines.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/plines.c b/src/nvim/plines.c
index 176f86c691..cbde0cfff9 100644
--- a/src/nvim/plines.c
+++ b/src/nvim/plines.c
@@ -288,8 +288,8 @@ unsigned int win_linetabsize(win_T *wp, linenr_T lnum, char_u *line, colnr_T len
///
/// "line" is the start of the line, "ptr" is the first relevant character.
/// When "lnum" is zero do not use text properties that insert text.
-void init_chartabsize_arg(chartabsize_T *cts, win_T *wp, linenr_T lnum, colnr_T col, char *line,
- char *ptr)
+void init_chartabsize_arg(chartabsize_T *cts, win_T *wp, linenr_T lnum FUNC_ATTR_UNUSED,
+ colnr_T col, char *line, char *ptr)
{
cts->cts_win = wp;
cts->cts_vcol = col;