1
0
forked from aniani/vim

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

@@ -2282,7 +2282,7 @@ call_def_function(
long bloblen = blob_len(tv_dest->vval.v_blob);
if (check_blob_index(bloblen,
n1, TRUE, FALSE) == FAIL
n1, FALSE) == FAIL
|| check_blob_range(bloblen,
n1, n2, FALSE) == FAIL)
status = FAIL;