diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-09 08:15:18 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-09 08:15:18 +0800 |
commit | 205b3765f2c04e3839b15a8d1ce79bd7ea8e4d3d (patch) | |
tree | b3db8da594fd829224607a11d21b43b3d329b76f /src/nvim/getchar.c | |
parent | f33cea4682340ea2b622fa879dd6fca2c80ea1d5 (diff) | |
parent | ff032f2710974dcf5930187f1925534da93db199 (diff) | |
download | rneovim-205b3765f2c04e3839b15a8d1ce79bd7ea8e4d3d.tar.gz rneovim-205b3765f2c04e3839b15a8d1ce79bd7ea8e4d3d.tar.bz2 rneovim-205b3765f2c04e3839b15a8d1ce79bd7ea8e4d3d.zip |
Merge pull request #17622 from dundargoc/refactor/clang-tidy/remove-redundant-casts
refactor/clang tidy/remove redundant casts
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r-- | src/nvim/getchar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c index 22d957d03d..299456f688 100644 --- a/src/nvim/getchar.c +++ b/src/nvim/getchar.c @@ -4140,7 +4140,7 @@ int makemap(FILE *fd, buf_T *buf) } for (p = mp->m_str; *p != NUL; p++) { if (p[0] == K_SPECIAL && p[1] == KS_EXTRA - && p[2] == (int)KE_SNR) { + && p[2] == KE_SNR) { break; } } |