diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-02-28 08:49:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-28 08:49:02 +0800 |
commit | f113cba3ec127201f54094f9174b50ee3001fbee (patch) | |
tree | cd909c0e8094a764fc52e3ab8a4781fbe9743827 /src/nvim/ex_getln.c | |
parent | 1b632e99f231baca8a640502a352aa68aee0568a (diff) | |
download | rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.tar.gz rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.tar.bz2 rneovim-f113cba3ec127201f54094f9174b50ee3001fbee.zip |
refactor(getchar.c): change most char_u to uint8_t (#22444)
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r-- | src/nvim/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c index a7f488458e..a3e0e650fa 100644 --- a/src/nvim/ex_getln.c +++ b/src/nvim/ex_getln.c @@ -2693,7 +2693,7 @@ char *getcmdline_prompt(const int firstc, const char *const prompt, const int at /// Read the 'wildmode' option, fill wim_flags[]. int check_opt_wim(void) { - char_u new_wim_flags[4]; + uint8_t new_wim_flags[4]; int i; int idx = 0; |