From 180c84ed378e694ebcd14198a7436e01462d2c4d Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sat, 14 Jun 2014 13:15:07 -0400 Subject: os_open: impl mch_open with libuv. ref #133 - use return value instead of open_req.result - libuv uv_fs_open() returns `-errno` instead of always -1 - libuv always sets open_req.result to the return value, _except_ for OOM where it only sets the return value. So always use the return value. - replace calls to mch_open macro. - update call sites expecting -1 error --- src/nvim/ex_cmds2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nvim/ex_cmds2.c') diff --git a/src/nvim/ex_cmds2.c b/src/nvim/ex_cmds2.c index 3158eafe65..85a9e9315a 100644 --- a/src/nvim/ex_cmds2.c +++ b/src/nvim/ex_cmds2.c @@ -2372,9 +2372,9 @@ int source_level(void *cookie) */ static FILE *fopen_noinh_readbin(char *filename) { - int fd_tmp = mch_open(filename, O_RDONLY, 0); + int fd_tmp = os_open(filename, O_RDONLY, 0); - if (fd_tmp == -1) + if (fd_tmp < 0) return NULL; # ifdef HAVE_FD_CLOEXEC -- cgit