Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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)
  • Loading branch information
brammool committed Apr 24, 2018
1 parent 09d1d51 commit 4994373
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.c
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -761,6 +761,8 @@ static char *(features[]) =

static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1760,
/**/
1759,
/**/
Expand Down

0 comments on commit 4994373

Please sign in to comment.