diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-04-14 21:30:06 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-04-14 21:30:06 +0200 |
commit | bd6406f15db210b78fa24dece3bd021a7ac085dc (patch) | |
tree | 5d398df80def11954b822eeb05741197249ba0ea /src/blob.c | |
parent | b1419268901b194b295b7cea18a1d0968f9dddfc (diff) | |
download | vim-git-bd6406f15db210b78fa24dece3bd021a7ac085dc.tar.gz |
patch 8.2.2767: compiler warning for unused argumentv8.2.2767
Problem: Compiler warning for unused argument.
Solution: Remove the argument.
Diffstat (limited to 'src/blob.c')
-rw-r--r-- | src/blob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blob.c b/src/blob.c index f020966ae..114dacdec 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) { |