mirror of
https://github.com/neovim/neovim.git
synced 2025-10-10 03:46:31 +00:00
refactor: replace char_u with char or uint8_t (#22400)
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -1022,7 +1022,7 @@ static void helptags_one(char *dir, const char *ext, const char *tagfname, bool
|
||||
*p2 = NUL;
|
||||
vim_snprintf(NameBuff, MAXPATHL,
|
||||
_("E154: Duplicate tag \"%s\" in file %s/%s"),
|
||||
((char_u **)ga.ga_data)[i], dir, p2 + 1);
|
||||
((char **)ga.ga_data)[i], dir, p2 + 1);
|
||||
emsg(NameBuff);
|
||||
*p2 = '\t';
|
||||
break;
|
||||
|
Reference in New Issue
Block a user