mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +00:00
cleanup: remove mch_fopen in favor of os_fopen
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user