diff options
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; } |