aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/strings.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2022-11-01 15:39:49 +0100
committerGitHub <noreply@github.com>2022-11-01 07:39:49 -0700
commitb05d1943f063c382ea96b76d250877bc58297314 (patch)
treea5f4ccbbaa27981a0135f201565b360b8ac31405 /src/nvim/strings.c
parent582c044dbe2b2bc4c74212b5ed8660c20fa1fd99 (diff)
downloadrneovim-b05d1943f063c382ea96b76d250877bc58297314.tar.gz
rneovim-b05d1943f063c382ea96b76d250877bc58297314.tar.bz2
rneovim-b05d1943f063c382ea96b76d250877bc58297314.zip
build(lint): remove clint.py rules for braces #20880
Uncrustify is the source of truth where possible. Remove any redundant checks from clint.py. See also https://github.com/neovim/neovim/pull/18563
Diffstat (limited to 'src/nvim/strings.c')
-rw-r--r--src/nvim/strings.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c
index 10173fac1d..4d1401293b 100644
--- a/src/nvim/strings.c
+++ b/src/nvim/strings.c
@@ -1041,7 +1041,7 @@ int vim_vsnprintf_typval(char *str, size_t str_m, const char *fmt, va_list ap, t
break;
}
if (arg > 0) {
- arg_sign = 1;
+ arg_sign = 1;
} else if (arg < 0) {
arg_sign = -1;
}