From: Bram Moolenaar Date: Tue, 24 Apr 2018 18:27:26 +0000 (+0200) Subject: patch 8.0.1760: wrong number of arguments to vms_read() X-Git-Tag: v8.0.1760 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4994373c5db80f8fd57e802997ae430afa5ec9ec;p=thirdparty%2Fvim.git 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 9c2563829b..bb038801ac 100644 --- a/src/ui.c +++ b/src/ui.c @@ -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 c25fcf1634..f16a4a7b20 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1760, /**/ 1759, /**/