changeset 13776:ef6de4674811 v8.0.1760

patch 8.0.1760: wrong number of arguments to vms_read() commit https://github.com/vim/vim/commit/4994373c5db80f8fd57e802997ae430afa5ec9ec Author: Bram Moolenaar <Bram@vim.org> Date: Tue Apr 24 20:27:26 2018 +0200 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)
author Christian Brabandt <cb@256bit.org>
date Tue, 24 Apr 2018 20:30:09 +0200
parents d42882beaa18
children bdecc420bd2c
files src/ui.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,