diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-11 11:06:58 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-11 17:06:52 +0100 |
commit | 128e194f64b0c70f01a48d11e6b41781104f7ca3 (patch) | |
tree | e13796c95b9c13959b3803ff301c032ba6f15c5c /src | |
parent | be83cd73b274ef9d81ff45f5f833ee8ac2ffc01e (diff) | |
download | rneovim-128e194f64b0c70f01a48d11e6b41781104f7ca3.tar.gz rneovim-128e194f64b0c70f01a48d11e6b41781104f7ca3.tar.bz2 rneovim-128e194f64b0c70f01a48d11e6b41781104f7ca3.zip |
fix(PVS/V1001): variable is assigned but is not used
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 b206d935d5..1461911609 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -3614,7 +3614,7 @@ static const char *did_set_option(int opt_idx, void *varp, OptVal old_value, Opt } // Unset new_value as it is no longer valid. - new_value = NIL_OPTVAL; // NOLINT(clang-analyzer-deadcode.DeadStores) + new_value = NIL_OPTVAL; // -V1001 NOLINT(clang-analyzer-deadcode.DeadStores) return errmsg; } |