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/proto/blob.pro | |
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/proto/blob.pro')
-rw-r--r-- | src/proto/blob.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/blob.pro b/src/proto/blob.pro index 0b7cbd3a8..3adaf0ffe 100644 --- a/src/proto/blob.pro +++ b/src/proto/blob.pro @@ -14,7 +14,7 @@ int write_blob(FILE *fd, blob_T *blob); char_u *blob2string(blob_T *blob, char_u **tofree, char_u *numbuf); blob_T *string2blob(char_u *str); int blob_slice_or_index(blob_T *blob, int is_range, varnumber_T n1, varnumber_T n2, int exclusive, typval_T *rettv); -int check_blob_index(long bloblen, varnumber_T n1, int is_range, int quiet); +int check_blob_index(long bloblen, varnumber_T n1, int quiet); int check_blob_range(long bloblen, varnumber_T n1, varnumber_T n2, int quiet); int blob_set_range(blob_T *dest, long n1, long n2, typval_T *src); void blob_remove(typval_T *argvars, typval_T *rettv); |