diff src/vim9execute.c @ 24454:53216e87f21c v8.2.2767

patch 8.2.2767: compiler warning for unused argument Commit: https://github.com/vim/vim/commit/bd6406f15db210b78fa24dece3bd021a7ac085dc Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 14 21:30:06 2021 +0200 patch 8.2.2767: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Remove the argument.
author Bram Moolenaar <Bram@vim.org>
date Wed, 14 Apr 2021 21:45:03 +0200
parents 3e1886f1e875
children baf75c8e1b7b
line wrap: on
line diff
--- a/src/vim9execute.c
+++ b/src/vim9execute.c
@@ -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;