mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 16:58:17 +00:00
vim-patch:8.2.2767: compiler warning for unused argument
Problem: Compiler warning for unused argument.
Solution: Remove the argument.
bd6406f15d
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -1498,7 +1498,7 @@ char *get_lval(char *const name, typval_T *const rettv, lval_T *const lp, const
|
||||
tv_clear(&var1);
|
||||
|
||||
const int bloblen = tv_blob_len(lp->ll_tv->vval.v_blob);
|
||||
if (tv_blob_check_index(bloblen, lp->ll_n1, lp->ll_range, quiet) == FAIL) {
|
||||
if (tv_blob_check_index(bloblen, lp->ll_n1, quiet) == FAIL) {
|
||||
tv_clear(&var2);
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user