aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/tag.c
diff options
context:
space:
mode:
authorDundar Goc <gocdundar@gmail.com>2022-04-25 09:08:52 +0200
committerDundar Goc <gocdundar@gmail.com>2022-04-25 13:32:01 +0200
commit4aae0eebb24371aefe4eb71baccf266336684398 (patch)
treee1fd4c2152fbb469eb59951cd41e28e5a7368c09 /src/nvim/tag.c
parent89df042a89c8c94cef37a1b1b26ada673bab78d0 (diff)
downloadrneovim-4aae0eebb24371aefe4eb71baccf266336684398.tar.gz
rneovim-4aae0eebb24371aefe4eb71baccf266336684398.tar.bz2
rneovim-4aae0eebb24371aefe4eb71baccf266336684398.zip
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
Diffstat (limited to 'src/nvim/tag.c')
-rw-r--r--src/nvim/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/tag.c b/src/nvim/tag.c
index 32d72218c8..659a3db10e 100644
--- a/src/nvim/tag.c
+++ b/src/nvim/tag.c
@@ -999,7 +999,7 @@ static int add_llist_tags(char_u *tag, int num_matches, char_u **matches)
}
vim_snprintf((char *)IObuff, IOSIZE, "ltag %s", tag);
- set_errorlist(curwin, list, ' ', IObuff, NULL);
+ set_errorlist(curwin, list, ' ', (char *)IObuff, NULL);
tv_list_free(list);
XFREE_CLEAR(fname);