0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.2767: compiler warning for unused argument

Problem:    Compiler warning for unused argument.
Solution:   Remove the argument.
This commit is contained in:
Bram Moolenaar
2021-04-14 21:30:06 +02:00
parent b141926890
commit bd6406f15d
5 changed files with 6 additions and 5 deletions

View File

@@ -1175,8 +1175,7 @@ get_lval(
lp->ll_n1 = (long)tv_get_number(&var1);
clear_tv(&var1);
if (check_blob_index(bloblen, lp->ll_n1, lp->ll_range, quiet)
== FAIL)
if (check_blob_index(bloblen, lp->ll_n1, quiet) == FAIL)
{
clear_tv(&var2);
return NULL;