diff options
author | Sirisak Lueangsaksri <spywhere@me.com> | 2021-01-20 10:39:16 +0700 |
---|---|---|
committer | Sirisak Lueangsaksri <spywhere@me.com> | 2021-01-20 23:57:21 +0700 |
commit | 52675915a737c22270af23c152bb1f115b157685 (patch) | |
tree | 25b72822e065120a42b3cc6cae2fd612805c1bf0 /src | |
parent | fcd6eea217d5f12f9c88d81eb5caa94a96fde3d6 (diff) | |
download | rneovim-52675915a737c22270af23c152bb1f115b157685.tar.gz rneovim-52675915a737c22270af23c152bb1f115b157685.tar.bz2 rneovim-52675915a737c22270af23c152bb1f115b157685.zip |
opt: address linting issues (#13783)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c index febcfd882b..74bf6f0590 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3238,7 +3238,7 @@ static int int_cmp(const void *a, const void *b) int check_signcolumn(char_u *val) { // check for basic match - if (check_opt_strings(val, p_scl_values, false) == OK) { + if (check_opt_strings(val, p_scl_values, false) == OK) { return OK; } |