diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-03-04 13:10:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 20:10:00 +0800 |
commit | 6cab36e5b7b0d741abe6c5a7c0e20bad30361034 (patch) | |
tree | 8f00dab70b4a63ff572600a6e4824f59b0ae29c6 /src/nvim/help.c | |
parent | a4f443994bb91321b00f29af9e6357df9102ce75 (diff) | |
download | rneovim-6cab36e5b7b0d741abe6c5a7c0e20bad30361034.tar.gz rneovim-6cab36e5b7b0d741abe6c5a7c0e20bad30361034.tar.bz2 rneovim-6cab36e5b7b0d741abe6c5a7c0e20bad30361034.zip |
refactor: replace char_u with char or uint8_t (#22400)
Work on https://github.com/neovim/neovim/issues/459
Diffstat (limited to 'src/nvim/help.c')
-rw-r--r-- | src/nvim/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/help.c b/src/nvim/help.c index 5fa48e0cee..968f0bc2f4 100644 --- a/src/nvim/help.c +++ b/src/nvim/help.c @@ -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; |