diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-10-27 06:28:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-27 12:28:16 +0800 |
commit | 0117c97e624ec14da05844f4e6f162b4f4e2a827 (patch) | |
tree | 2052569126733e8ca82844644dcb547a2aae4cc0 /src/nvim/spellfile.c | |
parent | 72503a7a4596dd4558e31be428b57f2ce3aaeb4f (diff) | |
download | rneovim-0117c97e624ec14da05844f4e6f162b4f4e2a827.tar.gz rneovim-0117c97e624ec14da05844f4e6f162b4f4e2a827.tar.bz2 rneovim-0117c97e624ec14da05844f4e6f162b4f4e2a827.zip |
refactor(clint): convert short to int16_t (#20815)
Diffstat (limited to 'src/nvim/spellfile.c')
-rw-r--r-- | src/nvim/spellfile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/spellfile.c b/src/nvim/spellfile.c index 793985f45d..d5fbbaff1f 100644 --- a/src/nvim/spellfile.c +++ b/src/nvim/spellfile.c @@ -415,7 +415,7 @@ struct wordnode_S { // "wn_region" the LSW of the wordnr. char_u wn_affixID; // supported/required prefix ID or 0 uint16_t wn_flags; // WF_ flags - short wn_region; // region mask + int16_t wn_region; // region mask #ifdef SPELL_PRINTTREE int wn_nr; // sequence nr for printing |