diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-07-26 11:18:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-26 11:18:19 +0200 |
commit | b42bfa599b3fc15d0b613cfcff8c742e57854cf3 (patch) | |
tree | 14de0a1eb8da856c567256a9b8acf6e5d0005c4f /src/nvim/misc1.c | |
parent | 8a9c9a996322a1d111c55efb156710add68da358 (diff) | |
parent | 2731080212fad1430becae0cb56fe33238e7e24a (diff) | |
download | rneovim-b42bfa599b3fc15d0b613cfcff8c742e57854cf3.tar.gz rneovim-b42bfa599b3fc15d0b613cfcff8c742e57854cf3.tar.bz2 rneovim-b42bfa599b3fc15d0b613cfcff8c742e57854cf3.zip |
Merge #10589 'os/fs: introduce os_fopen()'
Diffstat (limited to 'src/nvim/misc1.c')
-rw-r--r-- | src/nvim/misc1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc1.c b/src/nvim/misc1.c index 463c29405b..db0d56b5fd 100644 --- a/src/nvim/misc1.c +++ b/src/nvim/misc1.c @@ -2836,7 +2836,7 @@ char_u *get_cmd_output(char_u *cmd, char_u *infile, ShellOpts flags, xfree(command); // read the names from the file into memory - FILE *fd = mch_fopen((char *)tempname, READBIN); + FILE *fd = os_fopen((char *)tempname, READBIN); if (fd == NULL) { EMSG2(_(e_notopen), tempname); |