diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-07-07 22:17:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 13:17:03 -0700 |
commit | 0fd3f9130df478e44e3573f405d08f907ea0093a (patch) | |
tree | 618c222560d3bd43d925c1835eb4c06fb1ca1393 | |
parent | 3de777d259c379e9fffdf4ebc6aba4059b7400fc (diff) | |
download | rneovim-0fd3f9130df478e44e3573f405d08f907ea0093a.tar.gz rneovim-0fd3f9130df478e44e3573f405d08f907ea0093a.tar.bz2 rneovim-0fd3f9130df478e44e3573f405d08f907ea0093a.zip |
clang/'Dead nested assignment': don't assign unused value to precision #15012
-rw-r--r-- | src/nvim/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/strings.c b/src/nvim/strings.c index cb66f7682d..0363afe02d 100644 --- a/src/nvim/strings.c +++ b/src/nvim/strings.c @@ -964,7 +964,7 @@ int vim_vsnprintf_typval( break; } } - str_arg_l = precision = (size_t)(p1 - (char_u *)str_arg); + str_arg_l = (size_t)(p1 - (char_u *)str_arg); } } break; |