diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-04-24 20:27:26 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-04-24 20:27:26 +0200 |
commit | 4994373c5db80f8fd57e802997ae430afa5ec9ec (patch) | |
tree | 1fe74f7bc2a42c5cc3912b8c134a610507b13466 | |
parent | 09d1d51df5d9b215e583b5bbe36df46afb3db35f (diff) | |
download | vim-4994373c5db80f8fd57e802997ae430afa5ec9ec.zip |
patch 8.0.1760: wrong number of arguments to vms_read()
Problem: Wrong number of arguments to vms_read().
Solution: Drop the first argument. (Ozaki Kiichi)
-rw-r--r-- | src/ui.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1860,7 +1860,7 @@ fill_input_buf(int exit_on_error UNUSED) # endif ); # ifdef VMS - len = vms_read(read_cmd_fd, (char *)inbuf + inbufcount, readlen); + len = vms_read((char *)inbuf + inbufcount, readlen); # else len = read(read_cmd_fd, (char *)inbuf + inbufcount, readlen); # endif diff --git a/src/version.c b/src/version.c index c25fcf163..f16a4a7b2 100644 --- a/src/version.c +++ b/src/version.c @@ -762,6 +762,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1760, +/**/ 1759, /**/ 1758, |