commit | 4994373c5db80f8fd57e802997ae430afa5ec9ec | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Apr 24 20:27:26 2018 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Apr 24 20:27:26 2018 +0200 |
tree | 1fe74f7bc2a42c5cc3912b8c134a610507b13466 | |
parent | 09d1d51df5d9b215e583b5bbe36df46afb3db35f [diff] [blame] |
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)
diff --git a/src/ui.c b/src/ui.c index 9c25638..bb03880 100644 --- a/src/ui.c +++ b/src/ui.c
@@ -1860,7 +1860,7 @@ # 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