0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -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

@@ -340,7 +340,7 @@ blob_slice_or_index(
* Check if "n1"- is a valid index for a blobl with length "bloblen".
*/
int
check_blob_index(long bloblen, varnumber_T n1, int is_range, int quiet)
check_blob_index(long bloblen, varnumber_T n1, int quiet)
{
if (n1 < 0 || n1 > bloblen)
{