From bd6406f15db210b78fa24dece3bd021a7ac085dc Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 14 Apr 2021 21:30:06 +0200 Subject: patch 8.2.2767: compiler warning for unused argument Problem: Compiler warning for unused argument. Solution: Remove the argument. --- src/blob.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/blob.c') diff --git a/src/blob.c b/src/blob.c index f020966ae2..114dacdec2 100644 --- a/src/blob.c +++ b/src/blob.c @@ -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) { -- cgit v1.2.3